Problems with date format

Hi.
(Very newbie here )

I have set a behavior as follows: if the day on the table is today, it has to send an email.
I think I did correctly, but the email is not sent I think because the format of the date. In my table is DD/MM/YYYY and the comparison is MM/DD/YY or YYYY.
I compare the date on the table with TODAY() and if true, it should send the email.
Am I missing something?
Is there a way to sort this out?

Thanks in advance.

0 5 306
5 REPLIES 5

Hi @Antonio_Soler

Are you using the report?
If the trigger date is variable, you need to use reports instead of Workflow.

Hi @Takuya_Miyai

Thanks for answering, first, of course.
No, Iโ€™m not using reports, I was trying with workflow.
Iโ€™ve been reading the โ€œReportsโ€ attachment you left (thanks again, by the way), but I think I wownโ€™t be able to use this as Iโ€™m not on a paying plan because this was just for my own use as a, lets call it, a test.
What I wanted to do is when one data on a row is equal at today, send an email to remind it.
How could I do that?

Thanks.

@Antonio_Soler

Iโ€™m sure there is some way to make this happen, but I canโ€™t recommend it because it would be very tricky.
I would recommend signing up for the Pro plan and running it.

Include the TEXT() function in your comparison formula. So

Text([field input with date],โ€œdd/mm/yyyyโ€) = Text(Today(),โ€œdd/mm/yyyyโ€)

The text command takes lots of different input types and displays them with a selection of formatting types as defined in the inverted commas second parameter.

A very useful function!

Thanks Scott for the info.

Iโ€™ll wait some dates to come to see if it works ok, but I think it will do it.

Top Labels in this Space