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
RickardBengzon
Frequent Visitor

My card doesn't sum duplicates

Hi!

 

I want to SUM the amout of time it takes to deliver to these places. The problem is where I have duplicates it only sum once.
So for example 682P25 is only sum:ed once 270 not 540 as I want it to be. As you can se on entry-time these are two different deliveries.

So I want the total amount in the right column in my card. The data is form two tables. One table contains Address and the expected delivery time. 

RickardBengzon_1-1641465288239.png

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @RickardBengzon ,

 

Check the measure.

Measure =
var _sum = SUM('Table (2)'[value])
return
SUMX('Table (2)',_sum)
Capture.PNG
 
Best Regards,
Jay

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @RickardBengzon ,

 

Check the measure.

Measure =
var _sum = SUM('Table (2)'[value])
return
SUMX('Table (2)',_sum)
Capture.PNG
 
Best Regards,
Jay

Hello,

I think you can try to use a measure with SUMX. It will be something like:

 

MeasureName = SUMX(DISTINCT(TableName[entry_time]),CALCULATE(SUM(TableName[time_seconds])))
amitchandak
Super User
Super User

@RickardBengzon , if duplicate was created because of relation it will not come in total 

 

Get duplicate in total - Correct table name

Sumx(Summarize(Table1, Table[Parcel ID], Table1[Entery Time], Table2[Delivery Address Short], "_1", Sum(Table2[Time]) ) , [_1])

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

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!

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