Hello
I need to make sure a date give in not in the past
I get it from a webhook and from airtable
I am trying to parse it (not sure this is needed)
And, using a filter I try to compare it to the current date and time
I have tried many many combinations but can’t get it to work
thanks
Stan
Hello @Stanislas_Berteloot
The first thing is that you need to know how the functions work or write (syntax) in Make.
https://www.make.com/en/help/functions/using-functions
The Make Function has a specific syntax, But in your second attached image, you’ve just written it down as like text.
While using the function or previous steps data, I strongly recommend using that data selection panel.
This is just an example of how to write that same thing using Make’s function syntax.
{{formatDate(now; "MMMM DD YYYY h:mm A")}}
Also, check this Transforming Data using Functions - Make Academy
1 Like
Hi @Stanislas_Berteloot
{{formatDate(now; "MMMM DD YYYY h:mm A")}}
If you are not confident to hardcode the functions and variables you can map like this:
And mouse over any any function to see its syntax and examples.
Best regards,
Msquare Automation
Gold Partner of Make
@Msquare_Automation
Thanks a lot I will give it a try.