Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hello,
My team needs to develop dashboards for our sales organization that automatically show metrics of our current year as the dashboards load for the end users. We don't want users to have to set the filters each time. Instead, the dashboards should automatically filter to the current year.
How can we achieve this?
Solved! Go to Solution.
Hi @TechnicalTim,
You also could use relative date filtering of Page level filter or report level filter.
If you have solved your problem, please always accept the replies making sense as solution to your question so that people who may have the same question can get the solution directly.
Best Regards,
Cherry
Hi @TechnicalTim,
You also could use relative date filtering of Page level filter or report level filter.
If you have solved your problem, please always accept the replies making sense as solution to your question so that people who may have the same question can get the solution directly.
Best Regards,
Cherry
Hi,
Can you use the relative date filter on your date table? Click on the top right marker and change to relative when you have the Slicer visual selected.
Best regards
there are several ways you could go about this. One of them could be creating a calculated column in your Date dimension table, showing 0 for dates not in current year and 1 for dates in current year, then set a Page Level (or Report Level ) filter for this column equal to 1
Did I answer your question correctly? Mark my answer as a solution!
Proud to be a Datanaut!
You could create a calculated column like the below:
CurrentYear =
IF (
YEAR ( DateModel[Date] ) = YEAR (
TODAY ()
),
"Current Year",
FORMAT (
DateModel[Date],
"yyyy"
)
)
NB: If you already have "Year" in your date model then use this instead of ' YEAR ( DateModel[Date] ) '
Then set the filter to Current Year and this would automically change when a new year kicks in
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
121 | |
79 | |
48 | |
38 | |
31 |
User | Count |
---|---|
192 | |
79 | |
70 | |
50 | |
42 |