How do I use data in one column to replace data in a different column in Beast Mode?
I need to create a new column that pulls data in from one column but changes only certain cells to another value based on a value in the same row from a different column. This is what I have tried: CASE WHEN 'column A' = "xyz" THEN 'column B' 'abc' ELSE 'column B' END CASE WHEN 'column A' = "xyz" THEN 'column B'='abc' ELSE…