Hello,
Does anyone have ideas on creating a start and end month slicer for months only?
Like so:
I've tried the timeline slicer, it's too big and not what the end user is requesting.
I've tried the between slicer, but we do not want to display any days, only full months to prevent confusion. Also, don't want to use relative date slicer.
I have a values table and a date table, and a second date table to get this screenshot. Just don't know how to wire this whole thing up.
Solved! Go to Solution.
Hi, @dcrow5378
You don't need to create additional relationships, you can create a custom measure and apply it to the visual filter pane to filter data.
filter = IF(MAX('Fact Table'[Date])>=MIN('Start Date'[Date])&& MAX('Fact Table'[Date])<=MAX('End Date'[Date]),1,0)
Please check my attached pbix for more details.
Best Regards,
Community Support Team _ Eason
Hi, @dcrow5378
You don't need to create additional relationships, you can create a custom measure and apply it to the visual filter pane to filter data.
filter = IF(MAX('Fact Table'[Date])>=MIN('Start Date'[Date])&& MAX('Fact Table'[Date])<=MAX('End Date'[Date]),1,0)
Please check my attached pbix for more details.
Best Regards,
Community Support Team _ Eason
this shall be doable with
1) Creating two separate data tables, each pulled to one slicer.
2) Using SELECTEDVALUE to capture the selected values from slicers
3) Referring those values in your measure codes.
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
User | Count |
---|---|
240 | |
54 | |
49 | |
45 | |
42 |
User | Count |
---|---|
282 | |
211 | |
82 | |
76 | |
74 |