We have a requirement that SSAS cube store only the last value of a measure.
Currently we are using LastNonEmpty Aggregation and it is causing a bug
The measure here is pivoted on dimension Time and Product
So suppose in Database
ON Day 1
----------
Product - A
Time - 20110108
Value in Db - 3
After Processing Incremental
Value in Cube = 3
On Day 2
---------
Product - A
Time- 20110108
Value in DB- 2
After processing Incremental
Value in Cube = 3 + 2 = 5
But here we want the Value in Cube = 2
What are the options we can look at?