Forum Discussion
dynamic dashboard: userinput for filter date_begin and date_end
I would like to have a dynamic dashboard.
The enduser wants to enter a begin and end date in his dashboard.
The original table is:
ID | startdate | enddate | hours |
1 | 2017-12-01 00:00:00.000 | 2017-12-01 02:00:00.000 | 2:00 |
2 | 2017-12-02 00:00:00.000 | 2017-12-02 01:00:00.000 | 1:00 |
3 | 2017-12-01 00:00:00.000 | 2017-12-02 01:00:00.000 | 25:00 |
4 | 2017-12-03 00:00:00.000 | 2017-12-03 01:00:00.000 | 1:00 |
5 | 2017-12-03 00:00:00.000 | 2017-12-03 03:15:00.000 | 1:00 |
6 | 2017-12-05 00:00:00.000 | 2017-12-05 03:15:00.000 | 2:00 |
7 | 2017-12-01 00:00:00.000 | 2017-12-01 03:15:00.000 | 0:15 |
8 | 2017-12-06 00:00:00.000 | 2017-12-06 04:30:00.000 | 1:00 |
9 | 2017-12-09 00:00:00.000 | 2017-12-09 04:30:00.000 | 2:00 |
10 | 2017-12-01 00:00:00.000 | 2017-12-01 04:30:00.000 | 1:30 |
When the enduser filters on begindate 2017-12-02 and enddate 2017-12-05 in his dashboard only the following rows must be visualized
ID | startdate | enddate | hours |
2 | 2017-12-02 00:00:00.000 | 2017-12-02 01:00:00.000 | 1:00 |
4 | 2017-12-03 00:00:00.000 | 2017-12-03 01:00:00.000 | 1:00 |
5 | 2017-12-03 00:00:00.000 | 2017-12-03 03:15:00.000 | 1:00 |
6 | 2017-12-05 00:00:00.000 | 2017-12-05 03:15:00.000 | 2:00 |
Startdate >= Selected_startdate AND endate <= Selected_enddate
- How can I do this in a powerbi dashboard?
- Do I need 2 calander tables?
- Do I need a measure with a DAX function (what does the dax function look like?)
Please do you want to add some screenshots or is it possible to add a downloadable PBX?
- Anonymous8 years ago
BI_user,
Please download the PBIX file from the link below.
https://1drv.ms/u/s!AhsotbnGu1NogyDkrZposINAwiXU
Regards,
Lydia
2 Replies
- AnonymousNot applicable
BI_user,
Please download the PBIX file from the link below.
https://1drv.ms/u/s!AhsotbnGu1NogyDkrZposINAwiXU
Regards,
Lydia- BI_userAdvocate I
Thanks Lydia. This works well!