Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. 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 @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! |
|
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
124 | |
79 | |
50 | |
38 | |
38 |
User | Count |
---|---|
196 | |
80 | |
70 | |
51 | |
42 |