Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi,
I have a request to have a date range filter based on submission date in a paginated report, I am able to create the date range and it's working, however the report has only 3 years worth of data and the date range showed in filters displays all possible dates from 1800s, so users can select older dates although there's no data for those dates. I am trying to limit the date range filter to the relative dates in the dataset but I can't figure a way to do that. My paginated report is connected to a PBI dataset so I am using dax.
This is my query
-----------------------------------
DEFINE
MPARAMETER s_start_dt = FORMAT(@s_start_dt, "MM/dd/yyyy")
MPARAMETER s_end_dt = FORMAT(@s_end_dt, "MM/dd/yyyy")
VAR __Table1 =
SUMMARIZECOLUMNS(
Query1[Category],
Query1[Aggregate Underwriting Comp],
Query1[violation_id_link],
FILTER(VALUES(Query1[sbmsn_dt]),Query1[sbmsn_dt]>= @s_start_dt && Query1[sbmsn_dt]<= @s_end_dt)
)
EVALUATE __Table1
ORDER BY Query1[sbmsn_dt] desc
--------------------------------------------------
the parameters are defined as Date/Time with no available values nor default values
Below is a screenshot of how I see the date rnage right now, any help would be appreciated!
I have also tried the usual way where I add a calendar data source with relative dates (min and max based on my dataset), but this displays 2 boxes in the report for "From" and "To" Dates with dropdown to choose the date (like a dropdown text) which is not very intuitive
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
5 | |
5 | |
4 | |
3 | |
3 |