Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
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!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
21 | |
15 | |
11 | |
11 | |
10 |