We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hi All,
I am creating a report containing conditional formatting with Icons.
In the screenshot, I am comparing prior Vs current. If the current is less than prior then M/M trend would show Green down arrow, instead of Red arrow. In the calculation I used predefined icons name and convert then to Icon (screenshot attached). Can someone help me to change the downward arrow color from Red to Green.
thanks,
Solved! Go to Solution.
Hi @ayush_mriti ,
You can make the following adjustment to get it, please find the details in the attachment.
1. Update the formula of measure [fmm] as below
Conditional formatting =
SWITCH (
TRUE (),
[Current] > [Prior], 1,
[Current] < [Prior], 2,
[Current] = [Prior], 3
)
2. Change the conditional formatting configuration
Best Regards
Hi @ayush_mriti , Replace your dax with the below one.
fmm = SWITCH(
TRUE(),
[Current] > [Prior],"ColoredArrowUp",
[Current] > [Prior],"ColoredArrowDownGreen",
[Current] = [Prior],"TriangleMedium")
Did I answer your question ? Please mark this post as a solution.
Thanks,
Jai
Proud to be a Super User! | |
Both the solution worked. Thanks a lot!
Hi @ayush_mriti , Replace your dax with the below one.
fmm = SWITCH(
TRUE(),
[Current] > [Prior],"ColoredArrowUp",
[Current] > [Prior],"ColoredArrowDownGreen",
[Current] = [Prior],"TriangleMedium")
Did I answer your question ? Please mark this post as a solution.
Thanks,
Jai
Proud to be a Super User! | |
Hi @ayush_mriti ,
You can make the following adjustment to get it, please find the details in the attachment.
1. Update the formula of measure [fmm] as below
Conditional formatting =
SWITCH (
TRUE (),
[Current] > [Prior], 1,
[Current] < [Prior], 2,
[Current] = [Prior], 3
)
2. Change the conditional formatting configuration
Best Regards
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 57 | |
| 38 | |
| 33 | |
| 19 | |
| 16 |
| User | Count |
|---|---|
| 68 | |
| 66 | |
| 41 | |
| 34 | |
| 25 |