Forum Discussion
Calculation Error
- 3 years ago
Not sure I follow correctly how the model is built, but for the tables is see in the images, this should work.
SUMX( SUMMARIZE( 'YourTable', 'YourTable'[Identifier], 'YourTable'[Multiplier], 'YourTable'[Number] ), 'YourTable'[Number] * 'YourTable'[Multiplier] )
Hi there!
Have you tried only this:
Revenue - Total Including Predicted (USD) =
SUMX(
'Revenues',
'GST Revenues'[Predicted Revenue Calculator (USD)] * Data[Volume - Lots]
)- CM_Mills3 years agoHelper II
Hi, Thanks for reviewing. Without the sumx before the volume i get the following:
A single value for column 'volume - lots' in table 'data' cannot be determined. This canhappen when a measure refers to a column that contains many values without specifying an aggregation such as min,m ax,count or sum to get a single result.
- PabloDeheza3 years agoSolution Sage
Not sure I follow correctly how the model is built, but for the tables is see in the images, this should work.
SUMX( SUMMARIZE( 'YourTable', 'YourTable'[Identifier], 'YourTable'[Multiplier], 'YourTable'[Number] ), 'YourTable'[Number] * 'YourTable'[Multiplier] )- CM_Mills3 years agoHelper II
PabloDeheza Thank you for taking a look.
I have tried your solution but it isn't working. I think the issue is that 'Number' and 'Multiplier' are located in different tables. How would i take this into account?