Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
I have a column with 60,000+ rows, the format of which is:
07:00
08:23
22:01
Any idea how I could apply a quick filter for times between 19:00 - 07:00?
Solved! Go to Solution.
Hi @Anonymous,
Based on my test, you could refer to below formula:
Column = IF([Time]>=TIME(19,0,0)||[Time]<=TIME(7,0,0),1,0)
Result:
Regards,
Daniel He
Hi @Anonymous,
Could you please tell me if your problem has been solved? If it is, could you please mark the helpful replies as Answered?
Regards,
Daniel He
Hi @Anonymous,
Based on my test, you could refer to below formula:
Column = IF([Time]>=TIME(19,0,0)||[Time]<=TIME(7,0,0),1,0)
Result:
Regards,
Daniel He
Hi @Anonymous,
You can filter the data inside Power Query by filtering on the time column
As part of your data import, do a "Split Columns by Delimiter". Now you have an Hours and Minutes column, setting as numeric. Set your filter to be if the hours column is greater than or equal to 19 or less than or equal to 7
If I do a filter of :
is greater than or equal to 19, and lower than or equal to 7
It shows 0 records. Which is strange because there are records in that range.
Change it from AND to OR
User | Count |
---|---|
84 | |
78 | |
70 | |
47 | |
42 |
User | Count |
---|---|
106 | |
50 | |
49 | |
40 | |
40 |