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

Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.

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
May PBI 25 Carousel

Power BI Monthly Update - May 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

May 2025 Monthly Update

Fabric Community Update - May 2025

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