Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
test measure = SWITCH(TRUE() ,"9.9" >= "10.5" , "#00AA00" ,"9.9" < "9.5","#FF1E00", "#BFA416" )
For the above dax it will return #00AA00 which is not same as per number comparison .How power bi compare text values?
Solved! Go to Solution.
Hi @Anonymous,
In Power BI, it will compare one by one starting from the first character of the string.
For example, "9.9" vs "10.5", Power BI judges that they are strings. And the first character "9" of "9.9" is larger than the first character "1" of "10.5", so "9.9">"10.5" is true.
Best regards
Icey
If this post helps, then consider Accepting it as the solution to help other members find it faster.
Hi @Anonymous,
In Power BI, it will compare one by one starting from the first character of the string.
For example, "9.9" vs "10.5", Power BI judges that they are strings. And the first character "9" of "9.9" is larger than the first character "1" of "10.5", so "9.9">"10.5" is true.
Best regards
Icey
If this post helps, then consider Accepting it as the solution to help other members find it faster.
@Anonymous
maybe you can try this
test measure = SWITCH(TRUE() ,VALUE("9.9") >= value("10.5") , "#00AA00" ,value("9.9" )< value("9.5"),"#FF1E00", "#BFA416" )
Proud to be a Super User!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
126 | |
114 | |
70 | |
64 | |
46 |