Forum Discussion
Analitika
5 years agoPost Prodigy
Hide Columns with no data
I have measure
Measure=
VAR val1 = IF (
ISINSCOPE(Table1[Names]),
BLANK(),
FORMAT ( [MesureDivide], "0.00%" )
)
VAR val2 = [COGS]RETURN
SWITCH( SELECTEDVALUE(Table3[Surnames])
,"Sales", val1
,"COGS", val2
,"COGS", val2
,BLANK()
)
)
But it return blanks or empty values which not hiding and not possible to filter
How to hide thoose rows and columns? Problems seam with FORMAT functions, as without it everything work fine, but not showing %
4 Replies
- AnonymousNot applicable
Hello Analitika ,
Instead of format try like this[MesureDivide] &"0.00%"- AnalitikaPost Prodigy
Anonymous
Not work as showing zeroes value
- AnonymousNot applicable
Can you just check this [MesureDivide] and instead of format return this [MesureDivide] and check are you getting the expected value?