Default date between slicer to yesterday

yes, a common request - my solution is generally to move the date filter to the filter pane, and allow the user to change between the Advanced filter type:
image

and the Relative filter type:
image

and yes, there is an ‘include today’ toggle on the relative date filter type

then I still use a card visual with a measure to handle the date range of the report:
image
with the measure being:

Date Range = MIN(‘CALENDAR’[Date]) & " - " & MAX(‘CALENDAR’[Date])

however, if that won’t work for your users, you may want to take a look at the videos shared in this similar forum solution:

1 Like