This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
hello all,
please i'm looking for advices about the best practices to group data
so, i have a sales table with more than 6 millions rows, that store all the sales operations by (date time, seller, costomer, product, product category , ....)
- in my report i'll need only the date (not the time), the product and the product category
my question is : if i group the data by these 3 columns, the report will be more performant?
if yes, it's best to groupe in SQL server, write sql query in power bi (when getting data), grouping data in power query or grouping data with DAX?
thank you for your advices
Solved! Go to Solution.
Hi @Sofinobi ,
Grouping/aggregating data to just Date, Product, and Product Category before sending it to your data model should give you significant performance improvements over just using the data in its stored granularity.
In terms of how/where to do this I would recommend doing it as far away from your data model as possible, i.e. in order of preference:
-1- Have a new table added to your SQL DB with this aggregated data, or;
-2- Write an SQL view that outputs this aggregated data, or;
-3- Do it in Power Query while maintaining query folding
For maximum efficiency, you should also only include Product Code/ID and Product Category Code/ID in this table. The text descriptions should be held in dimension tables that you then use to build a star schema model with.
Pete
Proud to be a Datanaut!
Hi @Sofinobi ,
Grouping/aggregating data to just Date, Product, and Product Category before sending it to your data model should give you significant performance improvements over just using the data in its stored granularity.
In terms of how/where to do this I would recommend doing it as far away from your data model as possible, i.e. in order of preference:
-1- Have a new table added to your SQL DB with this aggregated data, or;
-2- Write an SQL view that outputs this aggregated data, or;
-3- Do it in Power Query while maintaining query folding
For maximum efficiency, you should also only include Product Code/ID and Product Category Code/ID in this table. The text descriptions should be held in dimension tables that you then use to build a star schema model with.
Pete
Proud to be a Datanaut!
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 1 |