The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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 @v-yilong-msft @bhanu_gautam @sroy_16 thank you for your support. working fine now.
Hi @v-yilong-msft 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! |
|
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
108 | |
82 | |
77 | |
46 | |
39 |
User | Count |
---|---|
135 | |
109 | |
70 | |
64 | |
55 |