Forum Discussion
Dax Compairing values of text with integer error
- Anonymous5 years ago
Hi Anonymous ,
According to my understanding, you want to set
c-p>0 : Green Arrow
c-p<0: Red Arrow
You could try this measure:
Measure = IF ( MAX ( 'Table'[c] ) - MAX ( 'Table'[p] ) > 0, "Green", "Red" )And apply it to Conditional Formatting as shown below:
Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous you are comparing text and number in this measure because Currentlessprevious is returning a text not the number
Arrow=If([c]-[p]>0,1,0)
Check my latest blog post Compare Budgeted Scenarios vs. Actuals I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!
⚡Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.⚡
Hi Parry2k ok, how could I use the text value returned in first measure and use it in my CF formatting..