Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I would like to create a sumarize table through a temporary table using only one dax formula.
Example:
Table - Trimestre
| DataInicio | DataFim |
| 201911 | 202001 |
| 201912 | 202002 |
Table - Sales
PeriodSales
| Period | Sales |
| 201910 | 100 |
| 201910 | 200 |
| 201910 | 300 |
| 201911 | 400 |
| 201911 | 450 |
| 201912 | 460 |
| 201912 | 100 |
| 202001 | 250 |
| 202001 | 260 |
Summarize Table
I would like to use the table created in the variable "vFilterTable" to calculate de average of [Total] columns by [DataFim] columns directly in this same dax formula. My ideia it was use de function summarizecolumns like below, but it´s not permited. Is there any way to have this summarize result without create another table?
The result that I spect is that:
Solved! Go to Solution.
Can you please try using after VAR vfiltertable
VAR _x = groupby(vfiltertable,[datafim],"Average", AVERAGEX(CURRENTGROUP(),[total])
RETURN
VAR _x
Can you please try using after VAR vfiltertable
VAR _x = groupby(vfiltertable,[datafim],"Average", AVERAGEX(CURRENTGROUP(),[total])
RETURN
VAR _x
It´s works perfectly.
I didn´t espected that would be so easy. I liked it
Thanks.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 47 | |
| 31 | |
| 16 | |
| 14 |
| User | Count |
|---|---|
| 86 | |
| 72 | |
| 38 | |
| 27 | |
| 24 |