Forum Discussion
Incorrect Total
Hi Guys,
I'm having incorrect Rankx Total on my measure. see screen shot & DAX query below, When i filter on fiscal Year, The RankTotal changes to 13 which is incorrect instead of 12.
- Anonymous4 years ago
Hi Anonymous ,
You can use the HASONEVALUE() function to fix the Total incorrect
Here are the steps you can follow:
Create a measure.
Total_Incorrect = var _table=SUMMARIZE('dim_sites','dim_sites'[Division],"_value",[Table Rank2]) return IF(HASONEVALUE('dim_sites'[Division]),[Table Rank2],SUMX(_table,[_value]))Result
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
3 Replies
- AilleryOMemorable Member
Hi,
Do you have any blank value hidden ?
It must be related to context filters, because as soon as you are on a total (=no filter) or in a visual card (= no filter) you get 13 instead of 12. It means that your ranking without filters is incorrect.
Try to look for missing filters in your results...
Hope it helps a bit
- AnonymousNot applicable
Look at the DAX correctly let me know if i need to include the date dim.. or which filter context I'm missing.
- AnonymousNot applicable
Hi Anonymous ,
You can use the HASONEVALUE() function to fix the Total incorrect
Here are the steps you can follow:
Create a measure.
Total_Incorrect = var _table=SUMMARIZE('dim_sites','dim_sites'[Division],"_value",[Table Rank2]) return IF(HASONEVALUE('dim_sites'[Division]),[Table Rank2],SUMX(_table,[_value]))Result
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly