We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. 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!
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 54 | |
| 39 | |
| 32 | |
| 17 | |
| 15 |
| User | Count |
|---|---|
| 64 | |
| 63 | |
| 37 | |
| 34 | |
| 22 |