Skip to main content
Solved

Color coding functionality

  • August 28, 2023
  • 2 replies
  • 85 views

Forum|alt.badge.img+4

Hello! Is there a way to create a notification (using the color function) highlighting an expiration date in my Airtable to alert me five months before an asset expires?

Best answer by Tanzugirl23

Your response was very helpful. I used the conditions option to color-code my renewal dates.  Thank you!

2 replies

Forum|alt.badge.img+17
  • Inspiring
  • August 29, 2023

You can colour code records based on the condition

"Where {Expiration Date} [is on or before] [number of days from now] '150' "

Alternatively, you can set up an email automation using the trigger "When a record matches conditions" with the condition above.

If you want it to be part of a record, you can set up a formula field with the formula (you can use anything to represent it, I just picked the red exclamation mark emoji).

IF(DATETIME_DIFF({Expiration Date},  TODAY() , "M") < 6, "❗")

 


Forum|alt.badge.img+4
  • Author
  • New Participant
  • Answer
  • August 29, 2023

Your response was very helpful. I used the conditions option to color-code my renewal dates.  Thank you!