This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Getting Expression Error when loading Data from SQL using a Custom Connector. below is the Screenshot of the error
Thanks in advance
Solved! Go to Solution.
Hi @mbasha_123 ,
It's there is a "null" value in the column, the "null" value is not list type, it can't execute the step you applied.
For example this column
When I select expand button>Extract Values
The null row get an error the same with yours.
Here's my solution, add the function try otherwise in the code.
Here's the original code which return an error.
= Table.TransformColumns(New, {"Name", each Text.Combine(List.Transform(_, Text.From)), type text})
Add try otherwise like this:
= Table.TransformColumns(New, {"Name", each try Text.Combine(List.Transform(_, Text.From)) otherwise null , type text})
Get the result.
I attach my sample below for your reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Nice and simple solution! Thanks.
Hi @mbasha_123 ,
It's there is a "null" value in the column, the "null" value is not list type, it can't execute the step you applied.
For example this column
When I select expand button>Extract Values
The null row get an error the same with yours.
Here's my solution, add the function try otherwise in the code.
Here's the original code which return an error.
= Table.TransformColumns(New, {"Name", each Text.Combine(List.Transform(_, Text.From)), type text})
Add try otherwise like this:
= Table.TransformColumns(New, {"Name", each try Text.Combine(List.Transform(_, Text.From)) otherwise null , type text})
Get the result.
I attach my sample below for your reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 24 | |
| 23 | |
| 17 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 36 | |
| 30 | |
| 22 | |
| 22 |