Forum Discussion
datajunkie_29
Helper I
3 years agoDisable Total for a text column
Hello All, I'm trying to hide the total of a text column that is using aggregation like first or last value it is showing the text in the Total row. I have disable/hide the text from the Total. C...
- 3 years ago
Closing this thread as I found a solution that works for my case. Changing HASONEVALUE to HASONEFILTER did the trick.
measure new =IF ( HASONEFILTER ( Table[Columnonrow] ), MAX ( Table[TextColumn] ) )
https://p3adaptive.com/2013/03/hasonevalue-vs-isfiltered-vs-hasonefilter/
Thanks!
datajunkie_29
Helper I
3 years agoClosing this thread as I found a solution that works for my case. Changing HASONEVALUE to HASONEFILTER did the trick.
measure new =
IF ( HASONEFILTER ( Table[Columnonrow] ), MAX ( Table[TextColumn] ) )
https://p3adaptive.com/2013/03/hasonevalue-vs-isfiltered-vs-hasonefilter/
Thanks!