Forum Discussion
Making a slicer or graph display X months back
- Anonymous9 years ago
Hi pantherfanrh,
I'd like to suggest you add a calculate column to show the diff between current row and today. After create the column, you can use this as the source of slicer(switch the mode to "Less than or equal to")
Calculated column formula:
Diff = DATEDIFF([Date],TODAY(),MONTH)
Notice: you should turn on the preview feature "number range slicer" to enable the expand options.
Regards,
Xiaoxin Sheng
So something like
date=EDATE([workdate],13)
then set the filter to that measure?
I'm trying to use EDATE but it doesn't like it when I use my column of dates in the table. Any advice?
Hi pantherfanrh,
I'd like to suggest you add a calculate column to show the diff between current row and today. After create the column, you can use this as the source of slicer(switch the mode to "Less than or equal to")
Calculated column formula:
Diff = DATEDIFF([Date],TODAY(),MONTH)
Notice: you should turn on the preview feature "number range slicer" to enable the expand options.
Regards,
Xiaoxin Sheng
- pantherfanrh9 years agoFrequent Visitor
Thank you so much!