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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Dax - filter should not associate particular measure

Hi,

 

I have the source data as following.Screenshot_1.png

 

In powerbi i create  the following report using table chart

Screenshot_3.png

I'm looking for a way so that clicking on the 'date' in the filter, will not affect or change the 'Required' column and will only affect the 'Received' column.

 

Note:  Required and Received column is created using dax Query(measure)

 

 

 

Thanks in Advance,

Priviya .P

6 REPLIES 6
Anonymous
Not applicable

Hi,

 

Provided the Pbix file following url:

https://avacorp1-my.sharepoint.com/:u:/g/personal/yuvaraj_g_avasoft_com/EW4UHUZ5miJFhaeS8JVbXfUBGb0z...

 

PowerBI Report:

Screenshot_4.png

 

If i click 24-Jun-2019, it shows like following image

Screenshot_5.png

But i expect as following report, if i click 24-Jun-2019 date filter

 

Screenshot_6.png

If you want the received column to be unaffected by filters, you'll have to set it up as a measure that explicity removes filters:

Received1 = CALCULATE( SUM(Sheet1[Received]), ALLEXCEPT(Sheet1,Sheet1[ProjectName]))

 

Anonymous
Not applicable

Hi Cmcmahan,

 

Thanks for your update, but With in a table Chart this measure is not working.

Provided the sample pbix file:

https://avacorp1-my.sharepoint.com/:u:/g/personal/yuvaraj_g_avasoft_com/EW4UHUZ5miJFhaeS8JVbXfUBGb0z...

 

 

Thanks in Advance,

Priviya .P

It's not working because you're using values from [Received] to calculate your measure [Required1].  My apologies on getting which field needed to be frozen wrong, but at least proofread the measures you get from here. 

 

Change the measure to 

Required1 = CALCULATE( SUM(Sheet1[Required]), ALLEXCEPT(Sheet1,Sheet1[ProjectName]))

 

Anonymous
Not applicable

Hi Cmcmahan ,

 

Thank you so much, 

we want one more scenario on this. if i click the date 24-Jun-2019, then dimension Column(ProjectName) also should not changed.Expect as following.

Screenshot_6.pngNote: Receive measure should change when we click the date filter

 

 

Thanks in Advance

 

 

 

So this is a reason to have a separate date dimension table.  Because the filter is based on values in the Sheet1 table, the data gets filtered out before the table is even aware of it. 

 

f you created a seperate date dimension table, you could filter on that, and check the "Show Items with No Data" option for ProjectName in the values bucket. 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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.

Top Solution Authors