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! Request now

Reply
Anonymous
Not applicable

DAX How to calculate SUMX of an expression with dynamic filter from report filters

I am struggling with writing a DAX for my measure.

 

Consider following simplified data model:

  • Customer able with 2 fields: CustomerId, CustomerName
  • Stay table with 5 fields: StayId, CustomerId, StayStartDate, StayEndDate, Cost

 

I have a report filter for the reporting period (from and start dates).

 

Now based on the selected report filter dates I need to calculate the total Days of Stay within the reporting period.

example., If reporting period is 1/1/2019, to 1/10/2019, I need to calculate a measure as a sum of all Days of Stay that overlap this period. These could be:

  • Case 1: Stays that started before 1/1/2019, end after 1/10/2019 => In this case count will be10 days
  • Case 2a: Stays that started before 1/1/2019, end before 1/10/2019 => in this case count of days is the number of days from 1/1/2019 to the actual StayEndDate (<10 days)
  • Case 2b: Stays that started after 1/1/2019, end after 1/10/2019 => in this case count of days is the number of stay days from StartDate to 1/10/2019 (<10 days)
  • Case 3: Stays that started after 1/1/2019, end before 1/10/2019 => This will be the acual number days stayed (StayEndDate - StayStartDate)

I thought it will be easier to split the DAX into above 4 cases and then take a sum of all. Following is what I have written so far for Case 1:

 
CALCULATE ( 
    SUMX( Stay, 
        DATEDIFF(ReportStartPeriod, ReportEndPeriod, DAY)
    ),
    ALL(Stay),
    FILTER( Stay, Stay[StayStartDate] <= ReportStartPeriod
        && (Stay[StayEndDate] > ReportEndPeriod
    ) 
)        
 

The above works but does not respect any other filters on Stay, e.g. Stay Days by Customer doesn't work. I tried replacing ALL with ALLSELECTED and ALLXCEPT but then I'm not sure how to write the additional Filter condition.

 

Any help will be appreciated.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

In fact, current power bi does not support filter on multiple columns.

You can take a look at the following link about create a bridge table to store all expand the date range records for calculate:

Spread revenue across period based on start and end date, slice and dase this using different dates

Regards,
Xiaoxin Sheng

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @Anonymous ,

In fact, current power bi does not support filter on multiple columns.

You can take a look at the following link about create a bridge table to store all expand the date range records for calculate:

Spread revenue across period based on start and end date, slice and dase this using different dates

Regards,
Xiaoxin Sheng

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

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!

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