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

Divide 2 different columns from different tables power bi

Hello 
hello i have 2 different tables I want to divide Table 1 value with Table 12 conversion rate 
there is a relationship between table 1 date and table 2  date 
chatgpt and other resources recommending 
DividedValue = SUM('table1'[value]) / SUM('table2'[converstion rate])
but i don't want to sum what should i do 
thanks 

 table1  table 2 
datevalue dateconversion rate
2020-01500 2020-013.3 
2020-01100 2020-023.1 
2020-021000 2020-033.2 
2020-04100 2020-043.12 
2020-04150 2020-053.4 
2020-04220    
2020-04225    
2020-0450    
      
2 REPLIES 2
JoBI
Resolver II
Resolver II

Hello,

If you want to divide all values from table1 with values of table2, you can create a new column in table1 (assuming there is a many:1 active relatioship):

DividedValue = table1[value] / RELATED(table2[conversion rate])

Hope this helps

Thanx for answering i get this error "A single value for column 'value' in table 1  cannot be determined. This can happen when a measure formula refers to a column that contains many values without specifying an aggregation such as min, max, count, or sum to get a single result."
also in the measure when i refer to the table 1 value i get a red line in value  "cannot find name [value]  "
and parameter is not in the correct type for table 2 table2[conversion rate] 
thanks

Helpful resources

Announcements
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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