Forum Discussion
piotrgrendus87
3 years agoHelper I
Hide Function
Hello All. Can You give some advise how to hide blank text when there is no data in table, but when in that same time i am using a hide function. Hide function Summary KPIs = IF ( ISFILTER...
- 3 years agoTry this one:
Hide function Summary KPIs = SWITCH(TRUE(), ISBLANK([Your measure name]),"#FFFFFF00", NOT(ISFILTERED ('Accountflex Data'[Dealer ID and Name Filter])),"#FFFFFF00", "#000000")
bolfri
3 years agoSolution Sage
Try this one:
Hide function Summary KPIs =
SWITCH(TRUE(),
ISBLANK([Your measure name]),"#FFFFFF00",
NOT(ISFILTERED ('Accountflex Data'[Dealer ID and Name Filter])),"#FFFFFF00",
"#000000")