Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hello,
I am trying to setup a report, and one of the requriments is to show the difference between two peroids/columns.
For example, is there a way to show the difference like below?
I was thinking to have a slicer filters where you can choose which peroids you would like to compare, and based on it a scorecard will show the results. However, I am not sure about the conditional fomatting of green and red arrows coloring.
Solved! Go to Solution.
Hi @basimretal ,
If you want create conditional formating just simply create measure like below:
Curr_value= calculate( sum(sales),dateadd( calendar[date],0,month))
Pre_value=calculate( sum(sales),dateadd( calendar[date],-1,month))
color= if([Prev_valau] > [Current_value],"Red",Green")
then apply to this on column condition formatting
or you can use this in card visual.
If you want to display arrow in card visual then use below measure:
If my post helps you please give kudos and accept my solution!
Hi @basimretal ,
If you want create conditional formating just simply create measure like below:
Curr_value= calculate( sum(sales),dateadd( calendar[date],0,month))
Pre_value=calculate( sum(sales),dateadd( calendar[date],-1,month))
color= if([Prev_valau] > [Current_value],"Red",Green")
then apply to this on column condition formatting
or you can use this in card visual.
If you want to display arrow in card visual then use below measure:
If my post helps you please give kudos and accept my solution!