Forum Discussion
Ak_Pikachu
3 years agoFrequent Visitor
Conditional Text box based on conditional format
I have a question, I want to display a text box visual, on condition basis If none of values in Red: "Everything Ok" If some values in Red: "Correct the Values". I have a DAX that works in Table...
- Anonymous3 years ago
Hi
Sorry, but only now i understood your problem.
So, i created a calculated column that checks if the value from table1 matches table2
Then created a measure that checks if any missmatched values are in scope
Hope it helps
FILE:
https://we.tl/t-mHWtCBvMDyKind regards,
José
Please mark this answer as the solution if it resolves your issue.
Appreciate your kudos! 🙂
Anonymous
3 years agoNot applicable
Hi
Just create a measure to check if the value "d" is in your column
Your Measure =
IF("d" in VALUES('yourtable'[yourcoulumn]), "Correct the Values","Everithing OK")
Kind regards,
José
Please mark this answer as the solution if it resolves your issue.
Appreciate your kudos! 🙂