Filter by date and time

Hello I have a date filter and would like to add a time one is it possible?

Hi @louisc
It's currently not supported, but there's work being done currently to unify the filter selectors:
https://github.com/metabase/metabase/issues/7418 - upvote by clicking :+1: on the first post

Hi @flamber,

when i do a filter on the date what time does it take to filter? My current time or midnight?

and can i get the date format from a column?

when I select a date filter can I do the date I choose plus 1 day?

when I choose the 16/06/2022 i want to do the 17/06/2022

@louisc You have to explain which column type or the filter variable you are using. There's no single answer.
Try providing more context and examples.

And include "Diagnostic Info" from Admin > Troubleshooting.

Can next to the filter i add a command to do date +1 day

@louisc Since you're using simple Date variable, then you can do something like this, because the returned value is just a string. I don't know which database type you're using.
{{selected_date}}::date interval '1 day'

we are using postgresql and tried it but did not work

@louisc Forgot the multiplier: {{selected_date}}::date + interval '1 day'
https://www.postgresql.org/docs/current/functions-datetime.html

worked perfectly thx @flamber