Hi
How turn off the Total on Column "Vendor Rate Description"?
This row is generated using a DAX Switch Measure and it is a Text based Column?
Solved! Go to Solution.
add additional if in your filter
if( isfiltered(Table[Account]) , <Your formula> , blank())
or you can also try isinscope
https://powerpivotpro.com/2013/03/hasonevalue-vs-isfiltered-vs-hasonefilter/
https://www.kasperonbi.com/use-isinscope-to-get-the-right-hierarchy-level-in-dax/
@Sean-OReilly - You can turn off Totals in the Format pane. However, if you want it just for that measure,
Measure =
VAR __Calc = <some calc>
RETURN
IF(HASONEVALUE('Table'[AccountID]),__Calc,BLANK())
You can also get there doing a similar thing with COUNTROWS('Table') and comparing to COUNTROWS(ALL('Table')) if they are the same, then you are in a total row.
add additional if in your filter
if( isfiltered(Table[Account]) , <Your formula> , blank())
or you can also try isinscope
https://powerpivotpro.com/2013/03/hasonevalue-vs-isfiltered-vs-hasonefilter/
https://www.kasperonbi.com/use-isinscope-to-get-the-right-hierarchy-level-in-dax/
Thanks man - it worked
User | Count |
---|---|
228 | |
81 | |
80 | |
77 | |
52 |
User | Count |
---|---|
179 | |
93 | |
84 | |
82 | |
73 |