17 comments
-
It would be cool if we could default the date picker to this "Today" value also.
-
Yeah this is very useful functionality - generally we want to reset the date pickers to default date when new session is opened.
-
I agree strongly with Srinivas, UIC that are Date Pickers should automatically default to the session date. This isn't how it currently works, particularly on mobile, I am required to select the klip and set the date.
-
In addition, the option of more "dynamic" options would give this a lot of flexibility. So instead of having to manually change something when it accumulates too much data (or becomes out of date if you have static dates) you could have options such as "Today", "30 Days Ago", "Beginning of Quarter". Things like that.
-
I agree. it is very convenient for our user to load the latest information automatically instead of choosing the date manually. Besides, if we use two date pickers for the user to setup a period, we also want to be able to set a limitation on how many days maximum the period can be, such as, we want the user to choose period no more than 3 months, otherwise, the user can choose whatever date they want, and very often, we 't keep the data for a long ago.
-
Being able to set the default value for a datePicker to 'Today" would be nice indeed.
-
I think being able to set the date picker to TODAY("TIMEZONE") is basic required functionality.
-
This fantastic suggestion was first suggested on July 31, 2013 (over 3 years ago) without any Klipfolio feedback
HELLO KLIPFOLIO - ARE YOU LISTENING TO YOUR PAYING CUSTOMERS ?
-
Yes, we certainly try our best to listen. Many of our best product improvements and features have come from the feedback we get from our customers. There are some great ideas in this thread. We are currently working improvements around date and time and these suggestions will be valuable input.
-
Agree, ability to select todays date would be fantastic!
-
Thanks for the feedback Michael.
-
Is there a way we can use both date picker for start date/ end date AND drop down filter like "Today", "Yesterday", "Last 7 days" etc?
-
Darwin, I would also like to know if that's possible.
-
This is highly needed!
Please do something about it!!! -
@Tuomas
Yes it is possible to use both drop down date period filter AND custom start date/ end date. I figured that out a while ago, it might not be relevant to this old thread. I would share how I did it anyway
First you build a regular drop down filter with "Custom" as an option for both value and label. Then I put a custom start and end date filter with 2 new variables ($startdate, $enddate). Then in the date column in the table, I put something like:
SWITCH(
$daterangefilter,
"Last 7 Days", DATEVALUE(DATERANGE( DATE_ADD( TODAY( ) ,"5", -6 ) , TODAY( ) ),"yyyy-MM-dd"),
"Yesterday", DATEVALUE(YESTERDAY( ),"yyyy-MM-dd"),
"Today", DATEVALUE(TODAY(),"yyyy-MM-dd"),
"Custom", DATEVALUE(DATERANGE(DATE_ADD($startdate,"5",1),DATE_ADD($enddate,"5",1)),"yyyy-MM-dd")
)So if the drop down is selected as "Custom", it will return the list of dates between $startdate and $enddate. I also use a "submit" button to control both components.
Hope this helps.
-
Please add this ASAP.
-
Progress?