0

Need to have a dashboards modified to have all Time Slicers (month. pay period) automatically default to the latest month. This will eliminate the need to manually update and republish reports with data refreshes.

I tried but I couldn’t accomplish it

2 Answers 2

1

maybe you can change the setting to relative date and set to this month

enter image description here

Sign up to request clarification or add additional context in comments.

Comments

1

There isn't a native option for this in Power BI just yet. However, a common workaround, is to add an additional column to your Date table similar to:

YearMonth Cur = 
  IF(
    EOMONTH([Date], 0) = EOMONTH(TODAY(), 0),
    "Cur Month",
    [YourYearMonthColumn]
  )

Here is an example:
Example

The idea is the default value remains the same, but gets calculated during dataset refresh. Remember to set "Sort on columns" for these new column(s).

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.