Forum Discussion
ZachRoberts
5 years agoFrequent Visitor
Text.Combine return null for empty table
Hello, I have a column of tables like below: I can expand the column to extract the values but that adds a duplicate line for each value - so I am using the below line in my power qu...
- 5 years ago
ZachRoberts - have you taken a look at https://docs.microsoft.com/en-us/power-query/handlingerrors ? e.g. try otherwise
ChrisMendoza
5 years agoResident Rockstar
ZachRoberts - have you taken a look at https://docs.microsoft.com/en-us/power-query/handlingerrors ? e.g. try otherwise
ZachRoberts
5 years agoFrequent Visitor
Thanks! That was the ticket 🙂
changed my query to the below and it worked
Table.AddColumn(#Source, "Project/System", each try Text.Combine(Table.Column([ProjectSystem], "Title"),", ") otherwise null)