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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Euro0681
Helper II
Helper II

Dividing 2 columns

I am trying to simply divide 2 columns but when doing so i get a wrong value (Example Below)

Euro0681_0-1669650552139.png

The correct value I'm looking for is "1.xxxx" , Note Column1 is displaying the sum and same concept for Column2 (they are displaying the sum for the entire column)


 

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @Euro0681 

create a Measure 

DIVIDE ( SUM ( 'Table'[Column1] ), SUM ( 'Table'[Column2] ) )

View solution in original post

6 REPLIES 6
Euro0681
Helper II
Helper II

@tamerj1 We can think of Column1 = quantity and column2 = price or something like that so each category has different quantity and price but the division for each is what i want to be static

 

@Euro0681 

Please try

=
SUMX ( 'Table', DIVIDE ( 'Table'[Column1], 'Table'[Column2] ) )

tamerj1
Super User
Super User

Hi @Euro0681 

create a Measure 

DIVIDE ( SUM ( 'Table'[Column1] ), SUM ( 'Table'[Column2] ) )

@tamerj1 what if i need the value to be static and not change whenever extra fields are added, in other words is there a way to do this using a column as opposed to a measure?

@Euro0681 

CALCULATE ( DIVIDE ( SUM ( 'Table'[Column1] ), SUM ( 'Table'[Column2] ) ), ALL ( 'Table' ) )

for more clarification I want the value to be static for every category. Example
Catogry1 Total = Column1/Column2 = 2.02 (made up numbers)
Category2 Total = Column1/Column2 = 1.02 (made up numbers)
 anytime i use Category1 with any other fields it should always remain '2.02' kind of like a group by in SQL?

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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