Forum Discussion
vutruong
Helper I
8 years agoHow to visualize % Changes like Stock Market chart
Hi,
I want to visualize % change in monthly sales like charts in Stock market which has the red simbol in the beside the number.
By using cart chart, I'm only able to visualize % changes but red simbol. Can you please help figure it out how to do it.
Thanks for your help.
Regards,
Vu
Hi Vu,
You can try it like this. [Measure] is your current measure.
Result = IF ( [Measure] > 0, CONCATENATE ( [Measure], UNICHAR ( 128314 ) ), CONCATENATE ( [Measure], UNICHAR ( 128315 ) ) )Best Regards,
Dale
2 Replies
- v-jiascu-msft
Microsoft Employee
Hi Vu,
You can try it like this. [Measure] is your current measure.
Result = IF ( [Measure] > 0, CONCATENATE ( [Measure], UNICHAR ( 128314 ) ), CONCATENATE ( [Measure], UNICHAR ( 128315 ) ) )Best Regards,
Dale
- vutruong
Helper I
Hi v-caliao-msft, can you please advice me on? Thank you.