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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
dsj8wksnnckk
Resolver I
Resolver I

Help with summing values of open opportunities

I have a table "Opportunities" that have the following columns "Unique Opportunity ID", "Created on", "Closed on", "Values" I need a DAX that will go through my date table and sum all the values of opportunities on that exact date that have a date "Created on" that is before and a "Closed on" that is after.

The active relationship between the "Date Table" and the "Opportunities" table is via "Created on" column


This is what I've come up with but it doesn't give me the right result. Im assuming its because of the active relationship (that must remain active)


Total Values =
SUMX( FILTER( Opportunities, Opportunities[Created on] <= MAX('Date'[Date]) && Opportunities[Closed on] >= MAX('Date'[Date]) ), Opportunities[Values] )

2 ACCEPTED SOLUTIONS
Anonymous
Not applicable

Hi @dsj8wksnnckk ,

Please try:

Total Values = 
CALCULATE(
    SUM(Opportunities[Values]),
    Opportunities[Created on] <= MAX('Date'[Date]),
    Opportunities[Closed on] >= MAX('Date'[Date]),
    USERELATIONSHIP('Date'[Date], Opportunities[Closed on])
)

Model:

vcgaomsft_0-1694768352558.png


Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

View solution in original post

dsj8wksnnckk
Resolver I
Resolver I

2 REPLIES 2
dsj8wksnnckk
Resolver I
Resolver I

Hey,

I've solved this using this logic: 
https://www.daxpatterns.com/events-in-progress/

Anonymous
Not applicable

Hi @dsj8wksnnckk ,

Please try:

Total Values = 
CALCULATE(
    SUM(Opportunities[Values]),
    Opportunities[Created on] <= MAX('Date'[Date]),
    Opportunities[Closed on] >= MAX('Date'[Date]),
    USERELATIONSHIP('Date'[Date], Opportunities[Closed on])
)

Model:

vcgaomsft_0-1694768352558.png


Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors