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

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.

Reply
Desarrollador9J
Frequent Visitor

Measure summary table not updating with filtered context

Hi everyone.

 

I create a measure summary Table getting measures from several tables, like this:

 

 

 

SummaryMeasures =

var measures=
UNION(
ROW("MEASSURE","measure 1", "VALUE",[Measure_1]),
ROW("MEASSURE","measure 2", "VALUE",[Measure_2])
)

Return
measures

 

 

 

And the result is like this:

 

MEASSURE || VALUE

-------------------------

measure 1  || 0.56

measure 2  || 8.54

 

The problem is that when I change the active filters (eg country, dates) the value of the measures in this new table is not updated. When I use the measures individually, they do update when I modify the filters.

 


I understand that it could be because I have to relate this new table to the rest of the tables in the model, although I have no idea how  because there are no columns here that I can use as FK . Does anyone know how I could solve this problem? I am new to DAX and am looking for information at the same time as doing this question.

 

Thanks a lot

1 ACCEPTED SOLUTION
Daryl-Lynch-Bzy
Resident Rockstar
Resident Rockstar

Hi @Desarrollador9J, the query you have created will create new Table in the Data Model when the Data Model is refreshed.  You can't pass slicer selections as this happens after the Data Model is loaded.  You will need to specific the filter context within the DAX code above.

 

I am wondering why you need to create a Summary table.  Could you consider using a Visual?  A Matrix table can be used to show a list of Measure results.  This visual will be impacted by Filtered Context.

 

The trick is you use the following feature to switch the measures from Columns to Rows:

DarylLynchBzy_0-1642703332463.png

 

 

 

View solution in original post

4 REPLIES 4
Daryl-Lynch-Bzy
Resident Rockstar
Resident Rockstar

Hi @melanid - I am not sure what you mean.  Could you please consider create a new post with more details about your problem so others can help?


Many thanks

Daryl

Desarrollador9J
Frequent Visitor

Thank you a lot @Daryl-Lynch-Bzy ! 

That was exactly what I needed, but I dind't know that the Matrix visualization had the word wrap feature.

 

Thanks again for your help.

 

 

Daryl-Lynch-Bzy
Resident Rockstar
Resident Rockstar

Hi @Desarrollador9J, the query you have created will create new Table in the Data Model when the Data Model is refreshed.  You can't pass slicer selections as this happens after the Data Model is loaded.  You will need to specific the filter context within the DAX code above.

 

I am wondering why you need to create a Summary table.  Could you consider using a Visual?  A Matrix table can be used to show a list of Measure results.  This visual will be impacted by Filtered Context.

 

The trick is you use the following feature to switch the measures from Columns to Rows:

DarylLynchBzy_0-1642703332463.png

 

 

 

Hi @Daryl-Lynch-Bzy ,

 

How would you proceed if the need is to create an other table ? How to put the filter inside the formula please ? 

 

Thanks a lot, 


Best regards

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.