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
Anonymous
Not applicable

Divide each value in a column by another value

123

1 ACCEPTED SOLUTION

@Anonymous 
So again.. it's a measure. Please try

=
SUMX (
    VALUES ( 'Customers'[Store Names] ),
    DIVIDE (
        [Custom $ Sales],
        CALCULATE ( [Sales of the total market], ALL ( 'Customers' ) )
    ) * 100
)

View solution in original post

6 REPLIES 6
tamerj1
Super User
Super User

Hi @Anonymous 

What do have on the rows of your table/matrix visual? How many source data tables are involved in the two measures? what is the dax for both measures?

Anonymous
Not applicable

So for Custom $ Sales, I've created this measure to bring Sales from all my customers. There's just one source table for the Custom $ sales, and then sales of the total market is also it's own measure in the table. 


My retailer names come from table: 'Customers'[Store Names], Custom $ sales is 'Sales'[Custom $ Sales] and then Sales of the total market is from 'Sales'[Sales of the total market] 

@Anonymous 
Please try

=
SUMX (
    VALUES ( 'Customers'[Store Names] ),
    DIVIDE (
        CALCULATE ( SUM ( 'Sales'[Custom $ Sales] ) ),
        CALCULATE ( SUM ( 'Sales'[Sales of the total market] ), ALL ( 'Customers' ) )
    ) * 100
)
Anonymous
Not applicable

Hey! I tried this, but for the 'Sales'[Custom $ Sales] it says they're not the right parameter... I created these measures within 'Sales' 

@Anonymous 
So again.. it's a measure. Please try

=
SUMX (
    VALUES ( 'Customers'[Store Names] ),
    DIVIDE (
        [Custom $ Sales],
        CALCULATE ( [Sales of the total market], ALL ( 'Customers' ) )
    ) * 100
)
Anonymous
Not applicable

hello @Anonymous ,
you can use the following:

Your measure = (SUM(table[Custom Sales]) / CALCULATE(SUM(table[Custom Sales]),ALL(table)))) * 100



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.