Forum Discussion
How do you append multiple columns into one column?
- 3 years ago
If I'm understanding correctly, this seems like a good use case for the coalesce operator.
[Initiative Description] ?? [#"MAT - Initiative Description"] ?? [#"ENG - Initiative description"] ?? [#"WAT -Initiative description"] ?? [#"OTH - Initiative description"]
If I'm understanding correctly, this seems like a good use case for the coalesce operator.
[Initiative Description] ?? [#"MAT - Initiative Description"] ?? [#"ENG - Initiative description"] ?? [#"WAT -Initiative description"] ?? [#"OTH - Initiative description"]
- Jojojojo3 years agoFrequent Visitor
Thanks this worked for me! Followed what was on the post and wrote it out like:
= Table.AddColumn(#"Added Custom3", "Initiative Description All", each
if [Initiative Description] <> null then [Initiative Description]
else if [#"MAT - Initiative Description"] <> null then [#"MAT - Initiative Description"]
else if [#"ENG - Initiative description"] <> null then [#"ENG - Initiative description"]else if [#"WAT -Initiative description"] <> null then [#"WAT -Initiative description"]
else if [#"WAT -Initiative description"] <> null then [#"WAT -Initiative description"]
else if [#"OTH - Initiative description"] <> null then [#"OTH - Initiative description"] else "N/A")