Hello community,
I’m having a very very hard time finding out the perfect formula to activate my automation… :pleading_face:
Here the thing :
I offer a 14 days trial with my services and wanted to track this with airtable. Each time the status change, an email is sent to the client via automation. For exemple :
- New record :arrow_right: Confirmation email
- Service online :arrow_right: Validation email
- One week left :arrow_right: Reminder
- 14 days :arrow_right: Service is over - Email sent
- Service off :arrow_right: Upsell - Email sent
The point of entrance is airtable form, but the service is live once the field “update URL” which is a last modified field is updated. Here’s the formula :
IF({Interface supprimée}=1,“Interface supprimée :pensive: ”,
IF(DATETIME_DIFF(TODAY(), {Update URL},‘days’) >=14, “C’est fini”,
IF(DATETIME_DIFF(TODAY(),{Update URL},‘days’) >=7, “Plus qu’une semaine”,
IF(DATETIME_DIFF(TODAY(),{Update URL},‘days’) >=1, “Phase test”,
IF(DATETIME_DIFF(TODAY(),{Update URL},‘days’) =0, “Nouveau client” )))))
Problem is, this formula work fine when set with “date” but don’t work anymore when set with “last modified”. Date format are identicals, date are identicals :
When set on “date” :
![Capture d’écran 2020-11-02 à 07.47.33 Capture d’écran 2020-11-02 à 07.47.33](/t5/image/serverpage/image-id/2605i5A9681DD133F9BB7/image-size/large?v=v2&px=999)
When set on “last modified time” :
![Capture d’écran 2020-11-02 à 07.50.51 Capture d’écran 2020-11-02 à 07.50.51](/t5/image/serverpage/image-id/2616i1E333EE578363C13/image-size/large?v=v2&px=999)
Anyone can help ??