Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi Gents,
I have the following table:
col1 col2
A R
B S
C T
D W
I would like to rename the field in Column1 based on the following:
if col2 value = R or S or W then col1 value is Blue
and if col2 value = T or ..or.. then col1 value is Red
Thanks,
@abukapsoun , You can create a new column in DAX
col3 = if( [col2] in {"R", "S", "W"},"Blue", "Red")
Thanks, is there an elseif because I have different criterias, i.e Blue, Red, Green, Purple..
Or i am thinking with the conditional column, but how to enter multiple value in the value field so I dont create 1 clause per value
@abukapsoun , In DAX you have Switch
col3 = Switch( True(),
[col2] in {"R", "S", "W"},"Blue",
// Add more conditions
"Red")
Refer my Video:https://www.youtube.com/watch?v=gelJWktlR80
Power query is if then else and you can have if again in then or else
In the conditional formatting, how can I specify the "Or" in the value field, so I can don't create a clause per value?
Thanks,
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
95 | |
69 | |
44 | |
38 | |
30 |
User | Count |
---|---|
157 | |
101 | |
60 | |
42 | |
40 |