Forum Discussion
Extract and categorize the column
- Anonymous3 years ago
Hi joeywong ,
How about use the conditional column? like this:Best Regards,
Gao
Community Support TeamIf there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
Use this formula in a custom column where you will need to populate {"AA","BB","CC","DD"} appropriately.
= Text.Combine(List.Intersect({Text.Split([Remarks]," "),{"AA","BB","CC","DD"}}),", ")
Hi Vijay,
Thank you for your attempt to help. However, this solution does not work. There are some null rows in between.
Do you have any other solutions? Thanks!
- Anonymous3 years agoNot applicable
Hi joeywong ,
How about use the conditional column? like this:Best Regards,
Gao
Community Support TeamIf there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
- Vijay_A_Verma3 years agoMost Valuable Professional
Use a try otherwise block
= try Text.Combine(List.Intersect({Text.Split([Remarks]," "),{"AA","BB","CC","DD"}}),", ") otherwise null