How to schedule using a specific date in ClickUp?

I need to create a filter that takes today’s date and the date the post is scheduled in my ClickUp, checks if the dates match so the flow can continue, but ClickUp is giving me a random format.


Hey Carlos,

that’s a UNIX timestamp. Use formatDate() on it to convert it to whatever you need. It will be in UTC so make sure you specify that.

2 Likes

Welcome to the Make community!

According to the Tokens you can use to parse a date variable, you can use x.

e.g.:

{{ parseDate(1.value; "x") }}
{{ formatDate(parseDate(1.value; "x"); "DD-MM-YYYY") }}

For more information, see Date Format links below.

Here are some useful links and guides you can use to learn more on how to use the Make platform, apps, and app modules. I found these useful when I was learning Make, and hope they might benefit you too —

Getting Started

Help Centre Basics

Articles & Videos

Hope this helps! Let me know if there are any further questions or issues.

@samliew

P.S.: Investing some effort into the Make Academy will save you lots of time and frustration using Make.

1 Like