Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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!
Solved! Go to 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!!
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!!
LinkedIn | Twitter | Blog | YouTube
@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!!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
58 | |
55 | |
55 | |
37 | |
30 |
User | Count |
---|---|
78 | |
64 | |
45 | |
43 | |
40 |