Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

Reply
Anonymous
Not applicable

DATESBETWEEN function applied to a measure

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]

))
 
I've tried this but it doesn't seem to be working:
% 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))))
 
Thanks in advance for any help
2 REPLIES 2
amitchandak
Super User
Super User

@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)))
)

 

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
wdx223_Daniel
Super User
Super User

the filter context bring in by CALCULATE might be overwrited by ALLSELECT

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

Check out the February 2025 Power BI update to learn about new features.

March2025 Carousel

Fabric Community Update - March 2025

Find out what's new and trending in the Fabric community.

Top Kudoed Authors