Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello All, PowerBi newbie question here.
I am using a slicer on a report that contains the dates (To & From) as filters on my report. (The report filters for all relevant data between these dates)
I need to retrieve these days to be able to calculate a production run rate based on the number days that were selected in the slicer
Is there any way i can retrieve these days two dates this from the slicer using a measure or column ??
Any help would be appreciated
Solved! Go to Solution.
Hi,
You can't use a column since calculated columns are calculated when you load data to the model, not when the user selects something in the slicer.
In DAX measures you can count the number of days by using DISTINCTCOUNT('Table'[Date]).
First selected date: MIN('Table'[Date])
Last selected date: MAX('Table[Date])
Good Luck!
You should be able to use MIN and MAX or MINX and MAXX to get the from and to dates selected in the slicer.
You should be able to use MIN and MAX or MINX and MAXX to get the from and to dates selected in the slicer.
Hi,
You can't use a column since calculated columns are calculated when you load data to the model, not when the user selects something in the slicer.
In DAX measures you can count the number of days by using DISTINCTCOUNT('Table'[Date]).
First selected date: MIN('Table'[Date])
Last selected date: MAX('Table[Date])
Good Luck!
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
19 | |
7 | |
6 | |
5 | |
5 |
User | Count |
---|---|
25 | |
10 | |
10 | |
9 | |
6 |