Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
eilidh3
Frequent Visitor

DAX coding for new column

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 SectorMarket Sector New Column
Public Health Public
Private Commercial Private 
Private EducationPublic 

 

Any help, as always, is greatly appreciated !  Thank you.  

1 ACCEPTED SOLUTION
Fowmy
Super User
Super User

@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"
        )
    )
)

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

3 REPLIES 3
Fowmy
Super User
Super User

@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"
        )
    )
)

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

eilidh3
Frequent Visitor

This worked perfectly!  Thank you!  

Anonymous
Not applicable

@eilidh3 

 

You can use an if condition ,

 

if([MarketSector] = "Education","Public",[Public/Private Sector])

 

Hope it helps

 

Please accept if this answers your query.

 

Thanks

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.