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
rveerasamy
Helper III
Helper III

when applying filter should not affect dax measure

Hi Experts,
 
I'm searching for solution that when applying filter it should not affect dax.
 
Days To Fulfill =
VAR childorderdate =CALCULATE(
    MAXX(CALCULATETABLE('PBI_BBA_SALES',FILTER('PBI_BBA_SALES',NOT ISBLANK('PBI_BBA_SALES'[Ref Id]) ) ),PBI_BBA_SALES[Order Date])
)
Return DATEDIFF(MAX('PBI_BBA_SALES'[Order Date]),childorderdate,DAY)
 
 
this is the measure I have created but when I add filter to the table it should not affect the dax
this is the solution I need
1 REPLY 1
tamerj1
Super User
Super User

Hi @rveerasamy 

please clarify what do you mean by "when I add filter to the table it should not affect the dax"

Also both CALCULATE and CALCULATETABLE are doing nothing in this case. Can simply write 

Days To Fulfill =
VAR childorderdate =
MAXX (
FILTER ( 'PBI_BBA_SALES', NOT ISBLANK ( 'PBI_BBA_SALES'[Ref Id] ) ),
PBI_BBA_SALES[Order Date]
)
RETURN
DATEDIFF ( MAX ( 'PBI_BBA_SALES'[Order Date] ), childorderdate, DAY )

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.