Forum Discussion
NISH72
Helper IV
7 years agoIndicator in power bi table
Hi I am using live connection and connected to ssas tabular model. I have sales data and if sales is 1000 it should display "bad" if sales 2000 it should display " ok" if 3000 then display "great" how to add these kpi with these messages in power bi and if possible how to show different for different kpi. The sales value should be displayed for each sales I'd. Thanks
NISH72 just create measure for message and then you can use it table visual or card visual
Total Sales = SUM( Tables[Sales] ) Sales Message = SWITCH( TRUE(), [Total Sales] > 3000, "Great", [Total Sales] > 2000, "Ok", "Bad" )