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 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!
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 |
---|---|
134 | |
91 | |
89 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
72 | |
68 |