Date formatting issue

So I am parsing the date like this:
image

And the this is how I am trying to format the date:
image

Nonetheless I am getting this error:
image

I think I am in the right path, but not sure what could i be missing. Will appreciate any advise from the community! Thank you!

Hello @Ivan_Hincapie and welcome to the Make Community!

Since value is currently a string, you’ll need to use parseDate() first to convert it to a date.
Then, you can use formatDate() to format it differently for display purposes.

1 Like

Thank you, that removed the error, but the output is empty
image
Do you have any suggestions there?

Can you show your parseDate() function?
It returned nothing so the function might not have the correct syntax.

@Donald_Mitchell sure, thank you, here it is:

image

parseDate() takes two parameters
image

After pick_date, try adding a semi-colon then the format of the date you’ve supplied, like MMMM DD, YYYY.