Forum Discussion
eilidh3
5 years agoFrequent 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 start...
Fowmy
5 years agoSuper 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"
)
)
)
eilidh3
5 years agoFrequent Visitor
This worked perfectly! Thank you!