Forum Discussion

xzfujc's avatar
xzfujc
Frequent Visitor
7 years ago
Solved

Calculated Table for Month over Month Changes

Hello,

 

I have an archive table that looks like the following:

 

GateEmp. IDCountMonthYear
IAa12335192018
IRAa12322092018
NEWa1232692018
PSAa12310892018
IRAb4563992018
NEWb45615192018
PSAb4565592018
IAa12345392018
IRAa123125102018
NEWa12335102018
PSAa12399102018
IAb45620102018
IRAb4569102018
NEWb456109102018
PSAb45666102018

 

I want to create a calculated table to show the Month over Month Change in the count of "Gates" from month 9 to 10 by Employee ID (Emp. ID).  So I want a table that will look like the following: 

 

GateEmp. IDMonth Over Month Change
IAa123102
IRAa123-95
NEWa1239
PSAa123-9
IAb45620
IRAb456-30
NEWb456-42
PSAb45611

 

This would allow me to show how things are moving from one gate to another each month for each employee and through the entire department. How can I code this in DAX so that the count from the Maximum Month in the table subracts the count from the previous month for each gate and employee combination? 

 

I would need code to take into consideration how employee b456 has no IA gate in month 9 but has a count of 20 in the IA gate by month 10. Also I would need the code to take into consideration if the month is 1 then to subtract the count from month 12 of the previous year. 

 

Any advice would be appreciated! 

  • Hi xzfujc

     

    The best way is to think of measures instead of tables/columns.  You can then calculate the number of gates for the given month, the number of gates for the previous month, and then the difference.

     

    You will need a date column to key off of, but since you have Month and Year, that's easy enough to create.

     

     

    //Calculated Column
    Dt = DATE(Year, Month, 1)
    
    //Measures
    Total Gates = CALCULATE(SUM(Count))
    
    LM Total Gates = CALCULATE([Total Gates], PREVIOUSMONTH(Dt))
    
    Variance = [Total Gates] - [LM Total Gates]

     

    This will allow you to create a table visual, and if you want to look at it by just Gate instead of by Gate and Emp ID, the calculation will take care of itself.

     

    Hope this helps

    David

7 Replies

  • dedelman_clng's avatar
    dedelman_clng
    Community Champion

    Hi xzfujc

     

    The best way is to think of measures instead of tables/columns.  You can then calculate the number of gates for the given month, the number of gates for the previous month, and then the difference.

     

    You will need a date column to key off of, but since you have Month and Year, that's easy enough to create.

     

     

    //Calculated Column
    Dt = DATE(Year, Month, 1)
    
    //Measures
    Total Gates = CALCULATE(SUM(Count))
    
    LM Total Gates = CALCULATE([Total Gates], PREVIOUSMONTH(Dt))
    
    Variance = [Total Gates] - [LM Total Gates]

     

    This will allow you to create a table visual, and if you want to look at it by just Gate instead of by Gate and Emp ID, the calculation will take care of itself.

     

    Hope this helps

    David

    • xzfujc's avatar
      xzfujc
      Frequent Visitor

      I think your solution will accomplish what I need. 

       

      I am running into an issue with 

      LM Total Gates = CALCULATE([Total Gates], PREVIOUSMONTH(Dt))

       

      It returns a 0. So my total variance is now equal to my total gates. Working on resolving. Is there a way to say something like the following?

       

      Total Gates = CALCULATE(SUM(Count), CurrentMonth(Dt))

       

      • dedelman_clng's avatar
        dedelman_clng
        Community Champion

        Change the variance calculation to

         

        Variance = IF(ISBLANK([LM Total Gates]), 0, [Total Gates] - [LM Total Gates])

        (or use BLANK() instead of 0 if you want to show no value in Variance for the first month)

         

         

        Hope this helps

        David

    • xzfujc's avatar
      xzfujc
      Frequent Visitor

      I can't explain it, but adding the .[Date] to the Dt field solved my problem. After adding the .[Date], the LM value was calculated correctly. 

       

      LM Total Gates = CALCULATE([Total Gates], PREVIOUSMONTH('Gates Count Archive'[Dt].[Date]))

       

      Thanks for all your help!