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

The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!

Reply
SachinFG
Frequent Visitor

Help with dax measure

Hi team,

 

Need help in figuring out the dax to calculate the sum of values for a given merchant with the start and end date.

 

There are sales ouside the start and end date but need to caluclate only cummulative sales for the below 3 promo dates.

 so for merchant 5032917, the value should be $37000.

 

Merchantstartendvalue
503291710/01/202321/01/202315000
50329171/03/202328/03/202312000
50329175/02/202326/02/202310000

 

1 ACCEPTED SOLUTION
tamerj1
Community Champion
Community Champion

Hi @SachinFG 
'Date' is a disconnected table

Sales Amount =
SUMX (
    FILTER (
        SaLes,
        Sales[Start] <= MAX ( 'Date'[Date] )
            && Sales[End] >= MAX ( 'Date'[Date] )
    ),
    Sales[Value]
)

If 'Date' is connected then try

Sales Amount =
SUMX (
    FILTER (
        ALL ( SaLes ),
        Sales[Start] <= MAX ( 'Date'[Date] )
            && Sales[End] >= MAX ( 'Date'[Date] )
    ),
    Sales[Value]
)

View solution in original post

1 REPLY 1
tamerj1
Community Champion
Community Champion

Hi @SachinFG 
'Date' is a disconnected table

Sales Amount =
SUMX (
    FILTER (
        SaLes,
        Sales[Start] <= MAX ( 'Date'[Date] )
            && Sales[End] >= MAX ( 'Date'[Date] )
    ),
    Sales[Value]
)

If 'Date' is connected then try

Sales Amount =
SUMX (
    FILTER (
        ALL ( SaLes ),
        Sales[Start] <= MAX ( 'Date'[Date] )
            && Sales[End] >= MAX ( 'Date'[Date] )
    ),
    Sales[Value]
)

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! It's time to submit your entry.

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 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.