Unexpected Totals in DAX (Part 1)

DAX is an awesome language and when paired with properly created relationships, DAX can add significant analytical value to your data models with minimum effort. But, you already knew that! So why are we here? Well, sometimes, DAX can produce results that are unexpected and this is usually very noticeable when looking at the totals row.

image

So why do we get unexpected results at the total row? Why doesn’t the total row simply return the sum of all the rows in a specified column? The simple answer is your DAX calculation is also computed for the total row and operates within the contexts of the total row. Let’s take a look at the previous screenshot.

In this example, the total row is returning all homes listed for all years in the filter context, this is in fact the sum of all the rows in the column. However, you may expect to only see the homes newly listed on the market for the latest time period, in this case that would be how many homes were listed in 2016. The result of 8,691 homes listed in the total row is not wrong or incorrect, it depends on what you are specifically looking for, it could definitely be unexpected depending on your analytical needs. If you do not wish to see the total of all homes ever listed in the current filter context then you have a couple of options available to you.

There are generally 3 ways you could address incorrect / unexpected totals.

  1. Pretend the problem doesn’t exist. (ProTip: Don’t ignore problems.)
  2. Identify when the DAX calculation is being evaluated for the total row and return a BLANK value.
  3. Identify when the DAX calculation is being evaluated for the total row and perform a different calculation.

In this blog post you are going to learn how to return blank to eliminate any confusion. In a future blog post you will learn how to use DAX to change the value of the total row.

HASONEVALUE function in DAX

In this simple example, the total row is the sum of all the rows, but this is not what we want. What we would want to show at the total row is how many homes have recently been listed for sale, not the total of all homes that have ever been listed. The first thing we must do is identify if we are at a total row. The way I do this is by using the function HASONEVALUE.

MSDN Definition:

HASONEVALUE: Returns TRUE when the context for the columnName has been filtered down to one distinct value only. Otherwise FALSE.

In the screenshot below I created a new measure called “Totals” and in this measure the function HASONEVALUE is used to correctly identify which row is the total row. This works because at the total level the filter context is all years, so the function returns FALSE.

image

The final step is to now use conditional logic and replace the Total row with a blank value.

BLANK() function in DAX

New Homes on Market (2)=
IF(
    HASONEVALUE(‘Date'[Year]),
    [New Homes on Market],
   BLANK())

SNAGHTMLde25f4f

Now the total row is no longer confusing or misleading. In part two of this series I am going to take this a step further and show how to use DAX to return your expected results at the total row instead of just returning blank!

Further Reading: Rob Collie over at PowerPivotPro has a great blog post on HASONEVALUE vs. ISFILTERED vs. HASONEFILTER:
https://powerpivotpro.com/2013/03/hasonevalue-vs-isfiltered-vs-hasonefilter/

Thanks!

Advertisement

8 thoughts on “Unexpected Totals in DAX (Part 1)

  1. Pingback: Unexpected Totals in DAX (Part 2) – Mitchellsql

  2. Pingback: Unexpected Totals in DAX (Part 3) – Mitchellsql

  3. Pingback: HASONEVALUE vs ISFILTERED in DAX – Mitchellsql

  4. Hi Mitchell,
    Thank you for explaining DAX stuff in plain and simple 🙂
    I am trying to implement the method demonstrated here to identify whether I am at the total row. All I have is a single Customer (Id, CustomerName) table with two rows + a slicer on the CustomerName column. Everything works fine until I start to slice the table via the slicer. If I filter the table down to one row through the slicer, the HasOneValue functions shows True even at the Total row. If I check two values or erase the slicer completely, the HasOneValue starts showing False at the Total row as I need. Do you have any recommendations on how to identify the Total row when there is only one record in the dataset table or the table is filtered down to one record thru the slicer?
    Thanks!

    • Hi Borka,

      Working with total rows are quite challenging in DAX and the way you write your expression depends on what you are trying to achieve as well as how the data might be sliced. If you’re just trying to return blank, you might also look at the properties of the visualization and just remove the total row all together. But generally speaking, if you filter your report down to one customer id, then using HASONEVALUE on the total row will not work in this case.

      • Hi Mitchell,

        Thanks a lot for answering, I really appreciate that!
        You were right, I did not manage to make HASONEVALUE work in the situation described above. What finally helped me and solved the issue was the IsInScope function. Using it I was able to identify the total row no matter whether the table was filtered down to one row or not. And that is what I looked for.

        Thanks again Mitchell, I am very pleased you made time and kindly answered me!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s