My Fact table looks like this:
ticketID price statusID
1 100 1
2 100 1
2 100 2
3 150 1
I am using SSAS to create an OLAP Cube for my data warehouse. I cannot use the aggregateFunction 'Sum' for the measure 'total price', because I will get 450$ instead of 350$ (which is the correct tatal)
Regards