Forum Discussion
Anonymous
7 years agoNot applicable
Same If function for several columns to populate a new column
Hi, I have this table with Client info about an assessment. In the table 56 columns has fields that has 0,1,2,3 value, where 0,1 represents Nonactionable & 2,3 represents Actionable. I am try...
- 7 years ago
Anonymous -
Something like
= Table.AddColumn(#"Changed Type", "Custom", each if [Column1] = 0 or [Column1] = 1 then "Action" else if [Column1] = 2 or [Column1] = 3 then "Non" else "N/A")
Anonymous
7 years agoNot applicable
Thank you ChrisMendoza so much!!
So If I have no Value & I want to replace with N/A wht should be my statement?
ChrisMendoza
Resident Rockstar
7 years agoAnonymous -
Something like
= Table.AddColumn(#"Changed Type", "Custom", each if [Column1] = 0 or [Column1] = 1 then "Action" else if [Column1] = 2 or [Column1] = 3 then "Non" else "N/A")
- Anonymous7 years agoNot applicable
- v-diye-msft7 years ago
Community Support
Hi Anonymous
Glad to know you have fixed the issue, could you plz kindly mark the helpful answer as a solution? that help others find it more quickly. thanks!