Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi good day can anyone assist me, is it possible to add the up and down arrow inside % actual column instead of a new column like what i have.
thank you
Solved! Go to Solution.
Hi @AllanBerces ,
I create a table as you mentioned.
Then I create a measure as bhanu_gautam said.
% Actual with Arrow =
MAX ( 'Table'[%_Actual] ) & " "
& IF (
MAX ( 'Table'[%_Actual] ) > 0.7,
"▲",
IF ( MAX ( 'Table'[%_Actual] ) < 0.7, "▼", "" )
)
I create another measure and here is the DAX code.
Measure = IF(RIGHT([% Actual with Arrow],1)="▼","Red","Green")
Then I choose Conditional formatting and go to Font color.
Finally you will get what you want.
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hello,
You can directly add conditional fomratting on your existing table/matrix visual with the below steps.
Apply Conditional Formatting:
Configure Icon Formatting:
Customize Icons:
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@AllanBerces , You can use DAX for this
Proud to be a Super User! |
|
Hi @bhanu_gautam thank you for your reply, when i try your solution it shows like
is it possilble to change if in percentage, and change the color to red if down and greeen if up together with the value.
Thank you
Hi @AllanBerces ,
I create a table as you mentioned.
Then I create a measure as bhanu_gautam said.
% Actual with Arrow =
MAX ( 'Table'[%_Actual] ) & " "
& IF (
MAX ( 'Table'[%_Actual] ) > 0.7,
"▲",
IF ( MAX ( 'Table'[%_Actual] ) < 0.7, "▼", "" )
)
I create another measure and here is the DAX code.
Measure = IF(RIGHT([% Actual with Arrow],1)="▼","Red","Green")
Then I choose Conditional formatting and go to Font color.
Finally you will get what you want.
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
H @Anonymous @bhanu_gautam @sroy_16 thank you for your support. working fine now.
Hi @Anonymous can i know what is the 0.7 on the measure you created.
Basically what i required is if the % Actual is higher the % Daily then Green value and up arrow, if below then Red value and down arrow.
Thank you
Go thorugh the video link which I have shaared it has similar scenario with color
Proud to be a Super User! |
|
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
58 | |
55 | |
55 | |
37 | |
30 |
User | Count |
---|---|
78 | |
64 | |
45 | |
42 | |
40 |