Forum Discussion
Can I select a bookmark based on current month when loading report?
- 4 years ago
Hi, jmkvalsund
You can try the following to set the slicer to the current month.
Column:
Monthnum = MONTH([Date])Measure:
Measure = IF(SELECTEDVALUE('Table'[Monthnum])=MONTH(TODAY()),1,0)Place Measure in the slicer's view filter and set it to equal 1.
The slicer then displays only the current month's options. Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, jmkvalsund
You can try the following to set the slicer to the current month.
Column:
Monthnum = MONTH([Date])
Measure:
Measure = IF(SELECTEDVALUE('Table'[Monthnum])=MONTH(TODAY()),1,0)
Place Measure in the slicer's view filter and set it to equal 1.
The slicer then displays only the current month's options. Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.