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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
I have a column called "Projected Hour Variance" that shows a percentage. I have this on a card visual, but instead of the percentage appearing, I want to show text OR show a red/yellow/green dot.
For example:
If the value is between -10% and 0%, I want text to appear as "Within Budget" OR have a green dot.
If the value is more than 10%, I want text to appear as "Over Budget" OR have a red dot.
How do I do this?
Solved! Go to Solution.
Hi @Anonymous ,
Please try this:
Or create a measure:
Measure =
var pro = MAX('Table'[Projected Hour Variance])
return
IF( pro <=0 && pro >= -0.1,"Within Budget",IF(pro>=0.1,"Over Budget",""))
Hi @Anonymous ,
Please try this:
Or create a measure:
Measure =
var pro = MAX('Table'[Projected Hour Variance])
return
IF( pro <=0 && pro >= -0.1,"Within Budget",IF(pro>=0.1,"Over Budget",""))
@Anonymous ,
Try a below DAX measure:
@Anonymous , You can create a color measure and use UNICHAR to display
example
Color Year = if(FIRSTNONBLANK('Table'[Year],2014) <=2016,"lightgreen",if(FIRSTNONBLANK('Table'[Year],2014)>2018,"red","yellow"))
refer these two
https://community.powerbi.com/t5/Desktop/FORMAT-icon-set-for-use-in-a-data-card/td-p/811692
https://exceleratorbi.com.au/conditional-formatting-using-icons-in-power-bi/
How or where do I add these formulas?
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 64 | |
| 51 | |
| 46 | |
| 23 | |
| 19 |
| User | Count |
|---|---|
| 139 | |
| 112 | |
| 51 | |
| 33 | |
| 29 |