Forum Discussion
New Column not working
Hello AmberGardner,
You can use Power Query(Transform Data) or DAX(New Column):
PQ example:
if [column] = 4 then "A"
else if [column] = 2 then "C"
else "B"
DAX(new column) example:
IF(
'Y Axis'[Y Axis] = 1,
"A",
IF(
'Y Axis'[Y Axis] = 2,
"C",
"B")
)Kind Regards,
Gรถkberk Uzuntaล
๐ If this post helps, then please consider Accepting it as a solution and giving Kudos โ it helps other members find answers faster!
๐ Stay Connected:
๐ Medium |
๐บ YouTube |
๐ผ LinkedIn |
๐ท Instagram |
๐ฆ X |
๐ฝ Reddit |
๐ Website |
๐ต TikTok |
2 Replies
- uzuntasgokberkSuper User
Hello AmberGardner,
You can use Power Query(Transform Data) or DAX(New Column):
PQ example:
if [column] = 4 then "A"
else if [column] = 2 then "C"
else "B"
DAX(new column) example:
IF(
'Y Axis'[Y Axis] = 1,
"A",
IF(
'Y Axis'[Y Axis] = 2,
"C",
"B")
)Kind Regards,
Gรถkberk Uzuntaล
๐ If this post helps, then please consider Accepting it as a solution and giving Kudos โ it helps other members find answers faster!
๐ Stay Connected:
๐ Medium |
๐บ YouTube |
๐ผ LinkedIn |
๐ท Instagram |
๐ฆ X |
๐ฝ Reddit |
๐ Website |
๐ต TikTok | - AnonymousNot applicable
Hi AmberGardner ,
Have a good day. Did the above reply help you resolve your issue? If so, please consider marking it as a solution. Thank you!
Best Regards,
Wearsky