March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi,
The below is driving me crazy! I have a table with an existing column ("Issue key"). I know it exists since I filter empty and select distinct on it ...
Still, when trying to buffer the table (or Group By another column) I get an error that the column does not exits.
Any Idea?
let
Source = ALL_ENTITIES,
#"Issue Type as text" = Table.TransformColumnTypes(ALL_ENTITIES,{{"Issue key", type text}}),
#"Remove Empty Issue Type" = Table.SelectRows(#"Issue Type as text", each [Issue key] <> null and [Issue key] <> ""),
TEST = Table.Buffer(#"Remove Empty Issue Type"),
#"Grouped Rows" = Table.Group(#"Remove Empty Issue Type", {"Project Code"}, {{"Latest Update Date", each List.Max([Updated]), type nullable date}})
in
#"Grouped Rows"
Error:
Solved! Go to Solution.
Problem solved. It was unrelated, in obtaining the data for '
ALL_ENTITIES
Problem solved. It was unrelated, in obtaining the data for '
ALL_ENTITIES
Hi @drorli This simply means that the steps don't have any column named "Issue key". Please try to check step by step and make sure its presence. Since, you have not provided any data, it is not possible to check the root cause. If you want community to check, please provide data.
Thanks @shafiz_p . Unfortunatly, it is not that simple.
This row, works without issue:
#"Remove Empty Issue Type" = Table.SelectRows(#"Issue Type as text", each [Issue key] <> null and [Issue key] <> "")
This is proof that column [Issue key] exists.
The next row does not explicitly mention column [Issue key] at all, I just ask:
TEST = Table.Buffer(#"Remove Empty Issue Type"),
Still, it complains that "The column 'Issue key' of the table wasn't found"
So, it is something deeper ...
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
87 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |