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
asdf1608
Helper V
Helper V

Compute Using Table down in table edit calculation in power BI

I am trying to do a DAX Calculation in Power BI - but it doesn't work like it does in Tableau and I can't figure out what I am doing wrong.

 

Calculations I am using in Tableau Listed Below

Table Down  = Sum(Sales)/Total(Sum(Sales))

The result for the above calculation is obviously 1

asdf1608_0-1699361951119.png

 

 

I got the same in Power BI.

 

 

But there is an option in Tableau called Table(down)

asdf1608_2-1699361951541.png

 

After selecting as Table(Down), the values of Tableau gets changed.

1 ACCEPTED SOLUTION

hi, @asdf1608 

 

same as you want 

it is column not a mesure

Column = DIVIDE(Sheet1[Sales],SUMX(ALL(Sheet1),Sheet1[Sales]))

Dangar332_0-1699369012877.png

 

output in measure

Measure = DIVIDE(
      SUM(Sheet1[Sales]),
      CALCULATE(
         SUM(Sheet1[Sales]),
         REMOVEFILTERS(Sheet1[Document Number])
      )
   )

 

Dangar332_1-1699369847296.png

 

 

View solution in original post

3 REPLIES 3
Dangar332
Super User
Super User

hi, @asdf1608 

 

try below

Column = DIVIDE(Sheet1[Sales],SUMX(ALL(Sheet1),Sheet1[Sales]))


 

@Dangar332 Yes I have tried that. it just gives me answer as "1"

asdf1608_1-1699367660636.png

 

What I want was to calculate table down for that column which provides this answer

asdf1608_2-1699367697715.png

This is the expected result I need in power BI

hi, @asdf1608 

 

same as you want 

it is column not a mesure

Column = DIVIDE(Sheet1[Sales],SUMX(ALL(Sheet1),Sheet1[Sales]))

Dangar332_0-1699369012877.png

 

output in measure

Measure = DIVIDE(
      SUM(Sheet1[Sales]),
      CALCULATE(
         SUM(Sheet1[Sales]),
         REMOVEFILTERS(Sheet1[Document Number])
      )
   )

 

Dangar332_1-1699369847296.png

 

 

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.