Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
Anonymous
Not applicable

DAX - Create New Table with variable table

I would like to create a sumarize table through a temporary table using only one dax formula.

Example:
Table - Trimestre

DataInicioDataFim
201911202001
201912202002


Table - Sales
PeriodSales

PeriodSales
201910100
201910200
201910300
201911400
201911450
201912460
201912100
202001250
202001260


Summarize Table

 

Dax1.PNG

 

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?

Dax2.PNG

The result that I spect is that:
Dax3.PNG

1 ACCEPTED SOLUTION
smpa01
Super User
Super User

Can you please try using after VAR vfiltertable

 

VAR _x = groupby(vfiltertable,[datafim],"Average", AVERAGEX(CURRENTGROUP(),[total])

RETURN

VAR _x

 

Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

In place of Average([Total]) use AverageX(_vTable,[Total])

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
smpa01
Super User
Super User

Can you please try using after VAR vfiltertable

 

VAR _x = groupby(vfiltertable,[datafim],"Average", AVERAGEX(CURRENTGROUP(),[total])

RETURN

VAR _x

 

Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs
Anonymous
Not applicable

It´s works perfectly.
I didn´t espected that would be so easy. I liked it

Thanks. 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.