March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi
I'm looking for a measure to show 0 instead of blank on my Power BI card visual and also change the text colour regardless if the amount is 0 or more. The issue is my data is text format and i can't change it to number as the column only contains the word "missing" and the card is counting the rows which have that text.
What I'm looking for it a measure that can do this:
If the count = "blank" then show 0 in orange OR if the count is more than 0 then show the count in orange.
I am very new to measures, so if you could please repsond with the exact measure I need, that would be awesome 🙂
thanks in advance 🙂
Solved! Go to Solution.
Hi @siddrow ,
You can refer to the following test procedure:
M_ =
var sel = SELECTEDVALUE('Slicer_'[Category])
return IF(MAX('Table'[Category])=sel,sel,"0")
Also didn't understand your need to show the orange color, but you can probably refer to the following screenshot:
Measure =
var sel = SELECTEDVALUE(Slicer_[Category])
return IF(MAX('Table'[Category])<>sel,0,1)
If the problem is still not resolved, can you further describe your requirements and provide relevant image information and screenshots of the desired results?
Best Regards,
Henry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @siddrow ,
You can refer to the following test procedure:
M_ =
var sel = SELECTEDVALUE('Slicer_'[Category])
return IF(MAX('Table'[Category])=sel,sel,"0")
Also didn't understand your need to show the orange color, but you can probably refer to the following screenshot:
Measure =
var sel = SELECTEDVALUE(Slicer_[Category])
return IF(MAX('Table'[Category])<>sel,0,1)
If the problem is still not resolved, can you further describe your requirements and provide relevant image information and screenshots of the desired results?
Best Regards,
Henry
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @siddrow ,
Use a measure like this
Please accept this as a solution if your question has been answered !!
Appreciate a Kudos 😀
Thanks for your quick reply, I appreciate it! 🙂
I don't think this one will work as I already have a slicer. The slicer is for different mine sites, so once clicked, it updates the cards to only show what is outstanding for that particular site. Would there be another way to do the measure?
Not sure about your query ...but if the count of the column is blank irrespective of what you select in the slicer this measure should work. Can you check and confirm on the same ?
@siddrow , Usually we add +0 for that
example measure = Count(Table[Measure])+0
Hi
Sorry this doesn't really answer my question. I need the full measure for both statements i am trying to do.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
133 | |
91 | |
88 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
73 | |
68 |