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, I'm trying to create a conditonal column and not sure how to do it properly.
For example, I have two columns, one is called OU and the other is called Office. The OU column has values that say "Computers" where as the column "Office" has the value that I want to display, is there any way that I can do somethingl ike:
If Column "OU" value equals "Computers" then "Office" value replaces that?
| NAME | OU | Office |
| Computer 1 | Computers| Austin, TX |
| Computer 2 | Dev Server| Root |
Solved! Go to Solution.
Then try
IF(Table(OU) = "Computers", Table(Office), Table(OU))
Does this help?
Hi @Jakuza,
Try creating a new column using an IF condition
IF(Table(OU) = "Computers", Table(Office), [else...])
Are there multiple conditions like "Computers"? If the value is not "Computers", what would you like to display as Office?
The idea is that if it displays something other than "Computers", the value should not change.
Then try
IF(Table(OU) = "Computers", Table(Office), Table(OU))
Does this help?
Thank you!
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 |
---|---|
124 | |
79 | |
50 | |
38 | |
38 |
User | Count |
---|---|
196 | |
80 | |
70 | |
51 | |
42 |