Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
Hi All,
Pretty new to Power Bi. I can’t get this column in this table to add up.
They are two measures.
“OEE = %”
“Points = whole number”
When it totals at the bottom, it picks up the average of the OEE total and scores the total as 3, but the total of the column = 22
How do I get this to show 22?
If it can't be done in the table, is there a measure I can use in card visual to show 22 instead?
Solved! Go to Solution.
Hi @tomsmith213 ,
You can create another new measure as below and put this new measure to replace the original measure [Points] onto the table visual...
New Measure = SUMX ( GROUPBY ( 'Table', 'Table'[Month], 'Table'[Day] ), [Points] )
In addition, you can refer the following links to try to solve your problem...
Why Your Total Is Incorrect In Power BI - The Key DAX Concept To Understand
Dax for Power BI: Fixing Incorrect Measure Totals
If the above one can't help you get the desired result, please provide some sample data in your table(exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards
Hi @tomsmith213 ,
try to use this measure in a card
Measure =
SUMX(
ADDCOLUMNS(
ADDCOLUMNS(
SUMMARIZE(Table,
Table[Day],
Table[Month ]
),
"@Pct",[OEE]
),
"@Points",SWITCH(TRUE(),
[@Pct] <= 0.35, 3,
[@Pct] <= 0.45, 6,
10
)
),
[@Points]
)
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @tomsmith213 ,
try to use this measure
SUMX(
SUMMARIZE('Table',
'Table'[Month],
'Table'[Day]
),
[Points]
)
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, thanks for the reply, however im not using a ‘table’
It’s a table visual just with a few measures inside of it.
Below is the measure for points, which I dragged into the table.
All I need to do, is add up the points as a total.
I would prefer the total of this table shown as a new measure (somehow) so i can place the result in a card visual
Hi @tomsmith213 ,
You can create another new measure as below and put this new measure to replace the original measure [Points] onto the table visual...
New Measure = SUMX ( GROUPBY ( 'Table', 'Table'[Month], 'Table'[Day] ), [Points] )
In addition, you can refer the following links to try to solve your problem...
Why Your Total Is Incorrect In Power BI - The Key DAX Concept To Understand
Dax for Power BI: Fixing Incorrect Measure Totals
If the above one can't help you get the desired result, please provide some sample data in your table(exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards
You legend, thanks so much!!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
85 | |
70 | |
68 | |
50 | |
32 |
User | Count |
---|---|
115 | |
100 | |
74 | |
65 | |
40 |