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 all,
I have a directquery Query on "MySalesTable" where I run a few filtering operations and it query folds fine. I then reference it and perform group bys to create "Imported" aggregate tables. So far so good.
However when I attempt to create an aggregated table based on the distinct number of invoices in my Sales data - It does not seem to utilize query folding (and thus does not complete in any kind of reasonable timeframe)
Here is the M code for my imported table:
let
Source = MySalesTable,
#"Removed Other Columns" = Table.SelectColumns(Source,{"DIM_A_KEY", "DIM_B_KEY", "DIM_C_KEY", "INVOICEID"}),
#"Grouped Rows" = Table.Group(#"Removed Other Columns", {"DIM_A_KEY", "DIM_B_KEY", "DIM_C_KEY"}, {{"InvoiceCount", each Table.RowCount(Table.Distinct(_)), Int64.Type}})
in
#"Grouped Rows"
Any ideas why this won't query fold?
Solved! Go to Solution.
@BSLATTER , refer if this can help https://www.youtube.com/watch?v=75LHPS3lOFg
@BSLATTER , refer if this can help https://www.youtube.com/watch?v=75LHPS3lOFg
Thank you for that link - yes my problem was thinking "Count Distinct Rows" operation should query fold, whereas you actually have to "Remove Duplicates" and then "Count Rows" operation to maintain the query folding.
An odd issue - but this helped me resolve my situation. Thanks again!
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 |
---|---|
92 | |
87 | |
84 | |
66 | |
49 |
User | Count |
---|---|
140 | |
114 | |
110 | |
59 | |
59 |