This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowThe Fabric community is now in read-only for platform upgrade. Learn more
Hi all,
I'm after some help please 🙂
Im looking to create a new column which will take two seperate columns, combine into one with one column overwritting some existing data.
I had started with a IF statement but Im not convinced thats correct.
Public Sector should equal Public sector ,
Private Sector should equal Private sector
however I want to show all Education Market Sector as Public sector no matter what is in the Public / Private column.
| Public / Private Sector | Market Sector | New Column |
| Public | Health | Public |
| Private | Commercial | Private |
| Private | Education | Public |
Any help, as always, is greatly appreciated ! Thank you.
Solved! Go to Solution.
@eilidh3
You can use the following formula to the desired results in a column:
New Column =
IF(
Table1[Market Sector ] = "Education",
"Public",
IF(
Table1[Public / Private Sector] = "Public" ,
"Public",
IF(
Table1[Public / Private Sector] = "Private",
"Private"
)
)
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@eilidh3
You can use the following formula to the desired results in a column:
New Column =
IF(
Table1[Market Sector ] = "Education",
"Public",
IF(
Table1[Public / Private Sector] = "Public" ,
"Public",
IF(
Table1[Public / Private Sector] = "Private",
"Private"
)
)
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
This worked perfectly! Thank you!
You can use an if condition ,
if([MarketSector] = "Education","Public",[Public/Private Sector])
Hope it helps
Please accept if this answers your query.
Thanks
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
| User | Count |
|---|---|
| 23 | |
| 22 | |
| 14 | |
| 14 | |
| 13 |
| User | Count |
|---|---|
| 47 | |
| 39 | |
| 24 | |
| 20 | |
| 20 |