Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
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.
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 28 | |
| 23 | |
| 19 | |
| 18 | |
| 15 |
| User | Count |
|---|---|
| 47 | |
| 44 | |
| 43 | |
| 35 | |
| 30 |