Forum Discussion
Anonymous
4 years agoNot applicable
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...
- 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
Anonymous
4 years agoNot applicable
amitchandak jsaunders_zero9 Thank you so much! I knew I was over thinking this one, I really appreciate it!