Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

DAX/Visualization Table Duplicating Data for next year

Attached is sample data from my visualization table. You can see the Product Value is completing a weird calculation - each year is duplicating the product value from the previous, and my grand total is twice what is should be. 

Here is DAX for a couple columns:

Annual ACV Diff Between TY LY = SUM('Divya ACV'[Product Value]) - [Annual ACV Product Value LY]
Annual ACV Product Value LY = CALCULATE (SUM('Divya ACV'[Product Value]),SAMEPERIODLASTYEAR('Calendar Table'[Date]))
 
YearProduct CategoryProduct Value Annual ACV Product Value LY  Annual ACV Diff Between TY LY 
2011A$131,282.70  $                                                                               131,282.70
2012A$131,282.70 $                                                                   131,282.70 $                                                                            (131,282.70)
2012A$1,397,633.70  $                                                                           1,397,633.70
2013A$1,397,633.70 $                                                                1,397,633.70 $                                                                         (1,397,633.70)
2013A$2,472,531.60  $                                                                           2,472,531.60
2014A$2,472,531.60 $                                                                2,472,531.60 $                                                                         (2,472,531.60)
2014A$4,010,372.20  $                                                                           4,010,372.20
2015A$4,010,372.20 $                                                                4,010,372.20 $                                                                         (4,010,372.20)
2015A$5,295,672.70  $                                                                           5,295,672.70
2016A$5,295,672.70 $                                                                5,295,672.70 $                                                                         (5,295,672.70)
2016A$6,553,524.60  $                                                                           6,553,524.60
2017A$6,553,524.60 $                                                                6,553,524.60 $                                                                         (6,553,524.60)
2017A$7,571,281.70  $                                                                           7,571,281.70
2018A$7,571,281.70 $                                                                7,571,281.70 $                                                                         (7,571,281.70)
 

Not sure why this is happening!

 

  • Hi Anonymous ,

     

     

    Based on my test,  if we don’t summarize the [Product value] field, then we can get the table like this, each year is duplicating the product value from the previous

     

     

    But if We select  Sum the value field, we can get the correct result as following,

     

     

    BTW , pbix file as attached


    Best regards,

     

2 Replies