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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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])

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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