Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin 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.
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
I got the same in Power BI.
But there is an option in Tableau called Table(down)
After selecting as Table(Down), the values of Tableau gets changed.
How do I achieve this table down in power BI.
I tried to use Calculate but still I didn't get what I need in Power BI
I'm attaching the sample file here both tableau and Power BI for reference
In Tableau the table(down) Computes down the length of the table and restarts after every partition.
Solved! Go to Solution.
hi, @asdf1608
same as you want
it is column not a mesure
Column = DIVIDE(Sheet1[Sales],SUMX(ALL(Sheet1),Sheet1[Sales]))
output in measure
Measure = DIVIDE(
SUM(Sheet1[Sales]),
CALCULATE(
SUM(Sheet1[Sales]),
REMOVEFILTERS(Sheet1[Document Number])
)
)
@Dangar332 Yes I have tried that. it just gives me answer as "1"
What I want was to calculate table down for that column which provides this answer
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]))
output in measure
Measure = DIVIDE(
SUM(Sheet1[Sales]),
CALCULATE(
SUM(Sheet1[Sales]),
REMOVEFILTERS(Sheet1[Document Number])
)
)
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
11 | |
10 | |
10 | |
10 |
User | Count |
---|---|
18 | |
13 | |
12 | |
11 | |
8 |