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
Anonymous
Not applicable

Divide SUM values from 2 tables (with date table/reference)

Hi,

 

I have a table which shows SUM values from 2 different tables - I would like to calculate:

Delta Date / Tons

 

The data have a Calender table as common reference,

 

How would I calculate this?2020-12-22_09-19-31.jpg2020-12-22_09-19-58.jpg

 

3 REPLIES 3
AlB
Community Champion
Community Champion

Hi @Anonymous 

It would be best to use explicit measures rather than implicit ones. Create a measure:

Measure =
DIVIDE ( SUM ( DataLog[DeltaData] ), SUM ( THA_JWIOVN[Tons] ) )

 

Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

 

SU18_powerbi_badge

PhilipTreacy
Super User
Super User

Hi @Anonymous 

Create a measure

Measure = DIVIDE( SUM('DataLog'[Delta Data]), SUM('THA_JWIOVN'[Tons]))

Regards

Phil



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


amitchandak
Super User
Super User

@Anonymous , Try a measure like

divide(Sum(data_log[Delta Date]), sum(THA_JWIOVN[Tons]))

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