Forum Discussion
Diffrenet tables one Date filter
Hello ,
1. I have a dashboard with two tables ( diffrenet ones with a date filed , EACH DATE FILED NAME IS DIFFRENET)
I want to create a filter (Slicer ) that will apply on both tables ,
for now all I have is 2 slicer one for each table.
Can anyone help ? (Important to : the filter needs to stay same as it is now , meaning a line you can chose on, as a normal date slicer)
2. I want the date Filter to be not just day and month but also TIme (in hours and min) , How can I do that .
For now All I have done was to chose slicer and the date field - which has a time but in the slicer I cant see it
- Anonymous6 years ago
I dont have a date and time colum in my tables , and I prefer not to add columns to my tables(Since I already have a dateeith time column in them)
So instead I used the similare option you guys gave earlier in the thread
Just instead of using Calander() I created a table as follow(using kusto get data):
let _stepSize = 1m;let _offset = 1d;let _startTime = startofmonth(now(), -1) - _offset;let _endTime = bin(now(), 1m) - _offset;range Timestamp from _startTime to _endTime step _stepSize| extend Timestamp = Timestamp + _offset| extend WeekOffset = toint((startofweek(Timestamp) - startofweek(now())) / 7d)| extend Timestamp = Timestamp - _offset| order by Timestamp descand then I added the realations to them and it worked.Thanks for helping ,
10 Replies
- Greg_DecklerCommunity Champion
Perhaps try creating a common table of just dates. Create a relationship between it and your 2 tables. You can use CALENDAR or CALENDARAUTO to create the date table.
- AnonymousNot applicable
Hi,
I suggest you create a date table or/and a time table and link the date fields from the 2 tables to the date/time table.
and use the date table as a filter for your 2 other tables
datetable: https://kohera.be/blog/power-bi/how-to-create-a-date-table-in-power-bi-in-2-simple-steps/
timetable: https://kohera.be/blog/power-bi/how-to-create-a-time-table-in-power-bi-in-a-few-simple-steps/
- amitchandakSuper User
I would suggest two table one for date and one for time . For time refer :https://kohera.be/blog/power-bi/how-to-create-a-time-table-in-power-bi-in-a-few-simple-steps/
Have date column without the time and join the dates with the date calendar table
Date = date[Datetime].date
To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :
https://radacad.com/creating-calendar-table-in-power-bi-using-dax-functions
https://www.archerpoint.com/blog/Posts/creating-date-table-power-bi
https://www.sqlbi.com/articles/creating-a-simple-date-table-in-dax/- amitchandakSuper User
Anonymous , Does the above replies helps. if you need more help make me @
Appreciate your Kudos.- AnonymousNot applicable
Hello amitchandak
unfortuantly it didnt work , I think the problem is that my Date table i created using CALENDERAUTO()
is without time , while my other 2 tables are with time.
Any chance that thisis the problem , and would anyway like to know how to create a slicerwith time as well.
Thanks.