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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
vwiles84
Helper III
Helper III

Sum 2 measures while excluding a date

I have a measure I need to create that will sum two values but not sum them if the date is a particular date range.  I don't want to exclude the data from being in the total, but I don't want it to sum the 2 values together. Can anyone assist with the syntax of the Dax measure?  Sample of the data attached.  I would like to sum donatyion qty - ALL with Donor count but NOT sum if the date is X.  If the date is X, then the value will be only the Donor count filed. Screenshot 2024-05-08 112625.png

2 ACCEPTED SOLUTIONS
ryan_mayu
Super User
Super User

maybe you can try ,

=if(max('Date')=date(2023,3,22)||max('Date')=date(2023,3,23),[Donor Count], [Total Store Donor Count])





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

AndyEagleton
Frequent Visitor

This is essentially an IF statement impacting the line values but not the total. Assuming dates to exclude is a hard coded range somethingl like this:

Total * =

VAR DatesToExclude = CALENDAR ( DATE ( 2020, 3, 4 ), DATE ( 2020, 3, 10 ) )

VAR CurrentDate = SELECTEDVALUE ( Dates[Date] )

RETURN
    IF ( CurrentDate IN DatesToExclude, [Donor Count], [Donor Count] + [Donation ALL] )

 

View solution in original post

4 REPLIES 4
AndyEagleton
Frequent Visitor

This is essentially an IF statement impacting the line values but not the total. Assuming dates to exclude is a hard coded range somethingl like this:

Total * =

VAR DatesToExclude = CALENDAR ( DATE ( 2020, 3, 4 ), DATE ( 2020, 3, 10 ) )

VAR CurrentDate = SELECTEDVALUE ( Dates[Date] )

RETURN
    IF ( CurrentDate IN DatesToExclude, [Donor Count], [Donor Count] + [Donation ALL] )

 

ryan_mayu
Super User
Super User

maybe you can try ,

=if(max('Date')=date(2023,3,22)||max('Date')=date(2023,3,23),[Donor Count], [Total Store Donor Count])





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Thanks. 

you are welcome





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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