How to send different messages depending on the time of day

Hello! I try to solve an easy problem, but can’t find a solution.

I need the recipient of a message in Telegram to receive, depending on the time of day, a message of “good evening” or “good morning”.
I think it can be solved very simply, but unfortunately it does not work for me, please help me to solve this problem. Thanks! :blush:

Here is my example:

the formula should be like this.

{{if(formatDate(now; “HH”) < 12; “Good Morning”; “Good Evening”)}}
you can copy and paste it

2 Likes

Thanks a lot! Works!