Forum Discussion
vnicholl
4 years agoHelper II
If statement with a between
I was unable to find an example of this somewhere too. So like this: numberfield = 3103, 4501, 5700, 8254. In new field I want to have the words: newfield = lowest,midrange,midrange,highest....
- 4 years ago
vnicholl if there are multiple conditions, better to use switch for easy readbility
New Column = SWITCH ( TRUE(), Table[Value] < 4400, "Some text", Table[Value > 4401 && Table[Value] < 7000, "Another Text", -you can add more condition here "Catch all text here" )✨ Follow us on LinkedIn and to our YouTube channel
Learn about conditional formatting at Microsoft Reactor
My latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) 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.
vnicholl
4 years agoHelper II
Thank you!!