Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi Guys,
I am adding column and sorting values within cell values with | :
= Table.AddColumn(#"Added Custom2", "NewColumnName", each Text.Combine(List.Sort(Text.Split([ExisitngColumnName],"|")),"|"))
However ExisitngColumnName contains few nulls which create Erros in newly created column NewColumnName
Do you know perhaps know how to skip/ignore that Errors please ?
Solved! Go to Solution.
I got it:
= Table.AddColumn(#"Added Custom2", "NewColumnName", each if [ExisitngColumnName] <> null then Text.Combine(List.Sort(Text.Split([ExisitngColumnName],"|")),"|") else "Empty Cell")
Hi @MasterSonic,
May I know whether your problem has been resolved? If so, could you please mark your solution by Accept it as the solution to help the other members find it more quickly. Thanks in advance!
Best Regards,
Community Support Team _ Caiyun
I got it:
= Table.AddColumn(#"Added Custom2", "NewColumnName", each if [ExisitngColumnName] <> null then Text.Combine(List.Sort(Text.Split([ExisitngColumnName],"|")),"|") else "Empty Cell")
@MasterSonic , use List.RemoveNulls
Table.AddColumn(#"Added Custom2", "NewColumnName", each Text.Combine(List.Sort(List.RemoveNulls(Text.Split([ExisitngColumnName],"|"))),"|"))
https://docs.microsoft.com/en-us/powerquery-m/list-removenulls
Ah... I think I see what's going on.
RemoveNulls takes null out of the list.
I meant that I have few cells with null value and they should be skipped ?
Is it possible?
I still have this:
Expression.Error: We cannot convert the value null to type Text.
Details:
Value=
Type=[Type]
Any Idea?
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
10 | |
10 | |
9 | |
6 |