Forum Discussion
arrows kpi
hi
i want to show the difference in the calls by arrows KPI between 2 months
what is the condition that i can use.
Anonymous , You can icon formatting under conditional formatting.
You can also use unichar for that.
refer for details : https://exceleratorbi.com.au/conditional-formatting-using-icons-in-power-bi/
https://community.powerbi.com/t5/Desktop/FORMAT-icon-set-for-use-in-a-data-card/td-p/811692
https://exceleratorbi.com.au/dax-unichar-function-power-bi/
2 Replies
- amitchandak
Super User
Anonymous , You can icon formatting under conditional formatting.
You can also use unichar for that.
refer for details : https://exceleratorbi.com.au/conditional-formatting-using-icons-in-power-bi/
https://community.powerbi.com/t5/Desktop/FORMAT-icon-set-for-use-in-a-data-card/td-p/811692
https://exceleratorbi.com.au/dax-unichar-function-power-bi/ - v-kkf-msft
Community Support
Hi Anonymous ,
If the total value shows a trend in January and February, create the following measure:
Measure = IF( SUMX( FILTER( 'Table', 'Table'[Date] = "Feb" ), 'Table'[Value] ) > SUMX( FILTER( 'Table', 'Table'[Date] = "Jan" ), 'Table'[Value] ), UNICHAR(11165), UNICHAR(11167) )If the values of different Problems show trend in January and February, create the following calculated columns:
Column = IF( OR( 'Table'[Value] < SUMX( FILTER( 'Table', 'Table'[Date]="Feb" && 'Table'[Problem] = EARLIER('Table'[Problem]) ), 'Table'[Value] ) , 'Table'[Value] < SUMX( FILTER( 'Table', 'Table'[Date]="Jan" && 'Table'[Problem] = EARLIER('Table'[Problem]) ), 'Table'[Value] ) ), 1, 0 )Trend = IF( 'Table'[Column] = 1 && 'Table'[Date] = "Feb", UNICHAR(11167), IF( 'Table'[Column]=0 && 'Table'[Date]="Feb", UNICHAR(11165) ) )This is my PBIX file.
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
WinnizIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.