Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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 September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
25 | |
19 | |
18 | |
18 | |
18 |
User | Count |
---|---|
37 | |
25 | |
18 | |
17 | |
13 |