Forum Discussion
gkc
4 years agoFrequent Visitor
Adding sub-text to matrix
Hello everyone! I am working on a dashboard and what I ideally want to do is to add a disclaimer when a person is exporting one of the matrix visuals. Something like: Table look: Column 1 Col...
- 4 years ago
gkc , if you are not using the total column, then you can have it there
using isfiltered or isinscope
a measure like
if(not(isinscope(Table[Column1])) , "Text",Format( [Measure], "#,###") )
amitchandak
4 years agoSuper User
gkc , if you are not using the total column, then you can have it there
using isfiltered or isinscope
a measure like
if(not(isinscope(Table[Column1])) , "Text",Format( [Measure], "#,###") )