Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hell Everyone,
I am trying to create a table containing different formats (Whole numbers and percentages). This table also should not be affected by selections in a specific dimension (Sampletable attached).
I currently have a solution where my expression consists of an If statement like this:
IF(KPI = KPI1 OR KPI = KPI3 OR KPI = KPI4, num(expression,'#.'), num(expression, '#.##%'))
This does work as long as I do not select a KPI (needed in another part of the App). However, once I do select a KPI the formatting condition is ignored and all KPIs formatted according to the selection.
Is there a way to prevent that from happening?