Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi,
Is there a way to apply a datesbetween function to this measure?
% Sum = IF(HASONEVALUE('Sort Table - Month Year'[Month Year]),[Measure 3],
SUMX(
ALLSELECTED('Sort Table - Month Year'),
[Measure 3]
))
% Attendance Sum 2018 =
IF(HASONEVALUE('Sort Table - Month Year'[Month Year]),[Measure 3],
CALCULATE(SUMX(
ALLSELECTED('Sort Table - Month Year'),
[Measure 3]
),DATESBETWEEN('DimDate'[Dates],DATE(2018,1,1),DATE(2018,12,31))))
@Anonymous , Try like
% Attendance Sum 2018 =
IF(HASONEVALUE('Sort Table - Month Year'[Month Year]),[Measure 3],
CALCULATE(SUMX(ALLSELECTED('Sort Table - Month Year'),[Measure 3]),filter(all('DimDate'),(DATESBETWEEN('DimDate'[Dates],DATE(2018,1,1),DATE(2018,12,31)))
) )
% Attendance Sum 2018 =
IF(HASONEVALUE('Sort Table - Month Year'[Month Year]),[Measure 3],
CALCULATE(SUMX(ALLSELECTED('Sort Table - Month Year'),[Measure 3]),DATESBETWEEN('DimDate'[Dates],DATE(2018,1,1),DATE(2018,12,31)))
)
the filter context bring in by CALCULATE might be overwrited by ALLSELECT
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
25 | |
20 | |
18 | |
18 | |
17 |
User | Count |
---|---|
37 | |
22 | |
18 | |
18 | |
13 |