Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Day after Slicer date selection

Hello,   I feel like this particular issue is likely really simple but I can't find any good examples.    I have a really simple report with a date slicer and two visuals. I need one visual to di...
  • jsaunders_zero9's avatar
    4 years ago

    Hi jarnolky,

     

    You could also use DATEADD function

     

    Example 

    SalesTotal = SUM('SalesData'[Sales])

    SalesTotalNextDay = CALCULATE([SalesTotal],DATEADD(_Calendar[Date],1,DAY))

     

    Hope that helps.

     

    Thank you