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
Anonymous
Not applicable

Giving a value to a word

I would like to add a new column that gives a number corresponding to a word that appears in a different column. 

 

If word APPROVED is in column 1, then "1" is shown in the new column

If word NOT APPROVED is in column 1, then "2" in the new column

If word IN PROGRESS is in column 1, then "3" in the new column

 

Thanks! 

1 ACCEPTED SOLUTION

Did you try to add a new column or a measure?

 

test this for adding a new column with DAX:

New Column = 
SWITCH([column 1],
"APPROVED ",1,
"NOT APPROVED",2,
"IN PROGRESS",3
)

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos!! 

 

LinkedIn | Twitter | Blog | YouTube 

View solution in original post

3 REPLIES 3
VahidDM
Super User
Super User

Hi @Anonymous 

 

Try this to add a new column:
New Column = 
SWITCH(EARLIER([column 1]),
"APPROVED ",1,
"NOT APPROVED",2,
"IN PROGRESS",3
)

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos!! 

Badges.jpg

LinkedIn | Twitter | Blog | YouTube 


              

Anonymous
Not applicable

@VahidDM That doesn't seem to work. It doesn't allow me to enter column 1 after EARLIER

Did you try to add a new column or a measure?

 

test this for adding a new column with DAX:

New Column = 
SWITCH([column 1],
"APPROVED ",1,
"NOT APPROVED",2,
"IN PROGRESS",3
)

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos!! 

 

LinkedIn | Twitter | Blog | YouTube 

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.