Birthday reminder

Hi all,

I try to create a birthday reminder in Appsheets. Therefore I compare the birthdate [Geburtsdatum] with Today(). When I do this I receive a false for an try in my test:

Day and Month are similar. What am I doing wrong?

Thx. Robert

Solved Solved
0 2 476
1 ACCEPTED SOLUTION

Your current expression compares even the year along with the date and month and year today (2021) is not matching the year 1973 the [Geburtsdatum] column.

Could you please try the below

NUMBER(TEXT([Geburtsdatum],โ€œDDMMโ€))=NUMBER(TEXT(TODAY(),โ€œDDMMโ€))
or even
TEXT([Geburtsdatum],โ€œDDMMโ€)=TEXT(TODAY(),โ€œDDMMโ€)

These expressions compare only date and month parts.

View solution in original post

2 REPLIES 2

Your current expression compares even the year along with the date and month and year today (2021) is not matching the year 1973 the [Geburtsdatum] column.

Could you please try the below

NUMBER(TEXT([Geburtsdatum],โ€œDDMMโ€))=NUMBER(TEXT(TODAY(),โ€œDDMMโ€))
or even
TEXT([Geburtsdatum],โ€œDDMMโ€)=TEXT(TODAY(),โ€œDDMMโ€)

These expressions compare only date and month parts.

Thank you! It works!

Top Labels in this Space