john316swan
Board Regular
- Joined
- Oct 13, 2016
- Messages
- 66
- Office Version
- 2019
- Platform
- Windows
I have a measure but it's not showing totals in the table totals at the bottom, here is the dax formula:
Total Packages =
CALCULATE(
COUNTROWS(CAMS),
CAMS[Awarded] = 1,
FILTER(
ALL('SF'),
'SF'[Jessup Program Type] = SELECTEDVALUE('SF'[Jessup Program Type]) &&
'SF'[Application Level] = SELECTEDVALUE('SF'[Application Level]) &&
'SF'[campus] = SELECTEDVALUE('SF'[campus])
)
)
Total Packages =
CALCULATE(
COUNTROWS(CAMS),
CAMS[Awarded] = 1,
FILTER(
ALL('SF'),
'SF'[Jessup Program Type] = SELECTEDVALUE('SF'[Jessup Program Type]) &&
'SF'[Application Level] = SELECTEDVALUE('SF'[Application Level]) &&
'SF'[campus] = SELECTEDVALUE('SF'[campus])
)
)