Forum Discussion

PBInonpro's avatar
PBInonpro
Helper III
3 years ago
Solved

Unpivot and 'sum' issues

I have a data source that has 12 columns for the year (Jan - Dec). The only way I see to run the model correctly is to unpivot the 12 columns and assign Jan - Dec a value of 1-12 (or rename and change to date format).

 

The issue is this, when I unpivot the columns the total sum is now 12 times the value it should be; do I need to make 12 different measures to account for each month for the sum or is there a DAX measure that can sum based on month. 

 

Example.

 

JanFebMar
51015
302520
1505

 

When I unpivot I get the following:

Jan5
Jan30
Jan15
Feb10
Feb25
Feb0
Mar15
Mar20
Mar5

 

Do I need to make a measure for each month? or is there a solution to only have one measure? The goal is forecast vs actual finance data. 

  • Anonymous's avatar
    Anonymous
    3 years ago

    Hi PBInonpro ,

     

    You could use group by to sum them up.

    After unpivotted, you get this.

    Right-click the Attribute column, select Group By...

    Set up as follows and then click OK.

     

     

     

    Best Regards,

    Stephen Tao

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

3 Replies

    • PBInonpro's avatar
      PBInonpro
      Helper III

      Thanks, I think this is the solution but is there a way to visualize this? I am not quite 100% grasping why the DIMDATE matters. 

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi PBInonpro ,

     

    You could use group by to sum them up.

    After unpivotted, you get this.

    Right-click the Attribute column, select Group By...

    Set up as follows and then click OK.

     

     

     

    Best Regards,

    Stephen Tao

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.