Forum Discussion

neo64's avatar
neo64
Regular Visitor
9 years ago
Solved

Problem with dax and previous month calculation

 

Hello, I have a data table similar to this:

 

DateUrlVisitsPrev month visits
01/05/2017/2050 
01/05/2017/implants1505 
01/06/2017/1900 
01/06/2017/implants2105 
01/07/2017/1560 
01/07/2017/implants1360 

 

And I'm trying to create a calculated column with visits from the previous month by url, but I'm very new to DAX and I can´t.

Can you help me?

 

Thank you very much

  • Hi neo64,

     

    Suppose your table is called 'Visit Table', you could try this formula:

    Prev month visits =
    LOOKUPVALUE (
        'Visit Table'[Visits],
        'Visit Table'[Url], 'Visit Table'[Url],
        'Visit Table'[Date].[MonthNo], 'Visit Table'[Date].[MonthNo] - 1
    )

     

    Best regards,
    Yuliana Gu

2 Replies

  • v-yulgu-msft's avatar
    v-yulgu-msft
    Icon for Microsoft Employee rankMicrosoft Employee

    Hi neo64,

     

    Suppose your table is called 'Visit Table', you could try this formula:

    Prev month visits =
    LOOKUPVALUE (
        'Visit Table'[Visits],
        'Visit Table'[Url], 'Visit Table'[Url],
        'Visit Table'[Date].[MonthNo], 'Visit Table'[Date].[MonthNo] - 1
    )

     

    Best regards,
    Yuliana Gu

    • neo64's avatar
      neo64
      Regular Visitor

      Thank you, work´s perfect