Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi,
I am getting an error that says can't find column and tells me the table and the name of the column but I have never used this column and didn't even know it existed. I don't know where this column has come from and I have checked the sources of all of all my tables in Power Query and it is not there. Is there any way I can see this column that it is struggling to find? Or another way around this issue.
I have checked the source for the table it is telling me however the column is not there either,
Thanks,
Neve
Solved! Go to Solution.
No matter. In whichever step is causing the error, add the last parameter: MissingField.Ignore.
--Nate
Hi @ngunwhy1 ,
You could use below M code to check whether the column exists in your table:
= Table.AddColumn(#"Changed Type", "Custom", each Table.HasColumns(Source,"Column1"))
And you will see:
You could also use below M code to get all the column names in the table:
#"Added Custom1" = Table.AddColumn(#"Added Custom", "Custom.1", each Table.ColumnNames(Source)),
#"Extracted Values" = Table.TransformColumns(#"Added Custom1", {"Custom.1", each Text.Combine(List.Transform(_, Text.From), ","), type text})
in
#"Extracted Values"
And you will see:
I made a simple sample for reference,pls see attached.
Best Regards,
Kelly
Did I answer your question? Mark my reply as a solution!
No matter. In whichever step is causing the error, add the last parameter: MissingField.Ignore.
--Nate
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
35 | |
17 | |
12 | |
11 | |
9 |
User | Count |
---|---|
45 | |
27 | |
16 | |
14 | |
14 |