Formula Help for Date Type

Hello everyone,

I am tracking inspections and need to show January 1st of next year for the next inspection due date.

Example, if an inspection is completed today, 5/22/2024, then I need it to return 1/1/2025.

I have the below formula but it is returning nothing to the field which is causing the associated BOT to error. For reference, the purpose of this bot is to trigger an action to add a new row to another table. The action itself runs but doesn’t populate the [next_ispection_due_date] column. Since there is no value in that field, the BOT which is supposed to run that action automatically, errors because a value in that field is required.

Here’s the formula I’m trying to use.
date(concatenate((TEXT(TODAY(),“DDMM”),(“01/01”)),(year(today()+1))))

Any help you can give would be appreciated.

Please try

EOMONTH(TODAY(), 12-MONTH(TODAY()))+1

Your expression could also be modified as

DATE(CONCATENATE(“01/01/”,YEAR(TODAY())+1))

1 Like

Thank you so much Suvrutt! I really appreciate your willingness to help me.

This formula worked beautifully. Both my action and my BOT are performing well now. :slightly_smiling_face:

1 Like

You are welcome.