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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. 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
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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