Forum Discussion
sdgiss
5 years agoHelper I
Maintaining filter context after applying ALL function
First off, let me state that I am very new to DAX. The question I have relates to maintaining filter context after applying the ALL function to create a new measure. The new measure identifies the...
- 5 years ago
sdgiss just adding a if function in your measure
Max Speed All Dates = IF([Daily Max],CALCULATE ( MAX ( fData[Max Speed] ), FILTER ( ALL ( dDate ), dDate[Date] ) )))
wdx223_Daniel
5 years agoCommunity Champion
sdgiss just adding a if function in your measure
Max Speed All Dates = IF([Daily Max],CALCULATE ( MAX ( fData[Max Speed] ), FILTER ( ALL ( dDate ), dDate[Date] ) )))- sdgiss5 years agoHelper I
This is the one! Thank you so much wdx223_Daniel!!