Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
I have a look up table with a row for "Sales Enquiry" as below which is called Enquiry Status Reason Funnel
In my main table I am using this merge and expansion
#"Merged Queries6" = Table.NestedJoin(#"Filtered Rows3", {"Enquiry Status Reason (CRM)"}, #"Enquiry Status Reason Funnel", {"Enquiry Status Reason (CRM)"}, "Enquiry Status Reason Funnel", JoinKind.LeftOuter),
#"Expanded Enquiry Status Reason Funnel" = Table.ExpandTableColumn(#"Merged Queries6", "Enquiry Status Reason Funnel", {"Enquiry Type", "Funnel Bucket", "Funnel Bucket Description", "Enquiry Status Reason Group"}, {"Enquiry Type", "Funnel Bucket", "Funnel Bucket Description", "Enquiry Status Reason Group"}),
This seems to work fine for all the other rows in the look up table, but this particular one generates this
so it has icked up one column correctly, but al lthe other columns are blank??? i did original have this looking up form 2 tables, but have completely deleted the 2nd table. Its like it is remembering the old table and just not reading the code correctly. i've rebuilt it severla times.
Any clues?
Solved! Go to Solution.
I did check for duplicates and the extra spaces. If it had no columns that would make sense. As i said doing a complete refresh seemed ot clear its head and it was fine. Thanks for response.
Hi @mike_asplin ,
Thank you for confirming that issue has been resolved. If further assistance is still required. We are available to support you and are committed to helping you reach a resolution.
Best Regards,
Chaithra E.
Hi @mike_asplin ,
If one column is expanding correctly while other columns are not populating as expected, it could be due to duplicates in the Enquiry Status Reason Funnel table. Check for any rows with the same key "Sales Enquiry" that have null values in other columns. In Power Query's preview mode, it will restrict the view to the first 1,000 rows, so make sure to check the source data.
Additionally, verify if there are any trailing spaces in the key values in both tables. Ideally, the key should be "Sales Enquiry," but it’s worth checking for variations like "Sales Enquiry ".
You mentioned that Power BI is referencing the old table. Please review your Power Query, as it might be related to earlier references you made. If you could share the complete Power Query, we would be able to diagnose the issue more effectively.
Thanks .
If this response was helpful in any way, I’d gladly accept a kudo.
Please mark it as the correct solution. It helps other community members find their way faster
I did check for duplicates and the extra spaces. If it had no columns that would make sense. As i said doing a complete refresh seemed ot clear its head and it was fine. Thanks for response.
close the pbix, reboot reopen and fixed it
Hii @mike_asplin
Since one column expands correctly and others return null, the merge is partially matching but not fully resolving the lookup row.
Fix:
In both tables, set join column explicitly to Text.
Add a clean column for merge:
Text.Upper(Text.Trim([Enquiry Status Reason (CRM)]))
Use this cleaned column in the merge on both sides.
Refresh preview (sometimes Power Query cache holds old structure).
I did a refresh and fixed itself before I tried your fix but much appreciated
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 44 | |
| 43 | |
| 38 | |
| 18 | |
| 16 |
| User | Count |
|---|---|
| 67 | |
| 63 | |
| 30 | |
| 30 | |
| 23 |