Forum Discussion
hood2media
3 years agoResolver II
power query | search all
hi, i have managed to create a query parameter list called "MainAirport" that will filter 2 columns (i.e. ORIGIN & DEST) using following formula: = Table.SelectRows( #"Promoted Headers", each [OR...
- 3 years agoDv-Ar =VAR Airport =SELECTEDVALUE( MainAirport[MainAirport] )RETURNCALCULATE(SUM( Master_Data[DIVERTED] ),
Mahesh0016
3 years agoSuper User
Dv-Ar =
VAR Airport =
SELECTEDVALUE( MainAirport[MainAirport] )
RETURN
CALCULATE(
SUM( Master_Data[DIVERTED] ),
- hood2media3 years agoResolver II
hi & tks, Mahesh0016.
it seems to work!kindly advise the dax formula to chk for all too i.e. regardless of the ORIGIN and DEST.
krgds, -nik- hood2media3 years agoResolver II
hi Mahesh0016,
i think i hv found the answer for all airports (regardless of the ORIGIN and DEST)-VAR SelectedAirport =SELECTEDVALUE( StnList[StnList] )RETURNIF(ISBLANK(SelectedAirport),CALCULATE(SUM( Master_Data[DIVERTED] ),ALL( Master_Data )),CALCULATE(SUM( Master_Data[DIVERTED] ),FILTER( Master_Data,Master_Data[DEST] = SelectedAirport)))krgds, -nik