Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
A simple way would be:
Use font color.
And there you write something like:
=IF(WILDMATCH(yourDimension,'*Total*'), yourExpressionColumn, yourExpressionColumn & RGB(255,255,255))
Example: You want to calculate the total people in your country by city, your IF would be like:
=IF(WILDMATCH(CityColumn,'*Total*'),SUM(people),SUM(people) & RGB(255,255,255))
If your dimension is like 'Total' the value of your expression will be displayed, else the value will be displayed but in white so it looks like nothing is there.
Regards
Gf
>>If your dimension is like 'Total' the value of your expression will be displayed, else the value will be displayed but in white so it looks like nothing is there.
You will still be able to export the data to Excel to see the values. So the only reason for doing it this way is for the user experience, and not for security.
Rather than matching to *total*, you could use dimensionality() for a more rigorous approach