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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
game1
Helper III
Helper III

Perform a calculation between 2 tables

Hello, 

Suppose I have these two tables. I would like to calculate a measure to divide table 1 and table2:

 

 

 

 

1 ACCEPTED SOLUTION
talespin
Solution Sage
Solution Sage

hi @game1 

 

I have joined these two tables on Date column, with one to many relationship and single.

 

talespin_0-1708509098876.png

 

 

Create this measure.

 

Measure =
VAR _Date = SELECTEDVALUE(Table1[Date])
VAR _Price = CALCULATE( SUM(Table1[Price]) )
VAR _Item = CALCULATE( SUM('Table'[Items]) )

RETURN DIVIDE( _Price, _Item)
 
talespin_1-1708509161810.png

 

View solution in original post

1 REPLY 1
talespin
Solution Sage
Solution Sage

hi @game1 

 

I have joined these two tables on Date column, with one to many relationship and single.

 

talespin_0-1708509098876.png

 

 

Create this measure.

 

Measure =
VAR _Date = SELECTEDVALUE(Table1[Date])
VAR _Price = CALCULATE( SUM(Table1[Price]) )
VAR _Item = CALCULATE( SUM('Table'[Items]) )

RETURN DIVIDE( _Price, _Item)
 
talespin_1-1708509161810.png

 

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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