cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Jakuza
Helper I
Helper I

Conditional Column

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     |

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Then try

 

IF(Table(OU) = "Computers", Table(Office), Table(OU))

 

Does this help?

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

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.

Anonymous
Not applicable

Then try

 

IF(Table(OU) = "Computers", Table(Office), Table(OU))

 

Does this help?

Thank you!

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors