Skip to main content

Updates to one field automatically change another field

  • February 19, 2019
  • 3 replies
  • 46 views

Is there a way to configure a column so updates made to another field on a record will make changes to that column? For example, if I’m managing my pipeline for a job search and I have a column that’s “interview date” and another that’s “stage”, I’d like the value of the stage column to change to ‘interviewing’ when I add a date/time to the interview date column.

3 replies

Justin_Barrett
Forum|alt.badge.img+21

An IF() should do the trick. Here’s an example for the Stage field:

IF(NOT({Interview Date} = BLANK()), "Interviewing", BLANK())

or if the logic inversion is confusing:

IF({Interview Date} = BLANK(), BLANK(), "Interviewing")

  • Author
  • New Participant
  • February 19, 2019

Very helpful. Can this be used if the the column’s field type is ‘single select’? I can’t seem to add a formula to the field


Justin_Barrett
Forum|alt.badge.img+21

Unfortunately fields can only be one type. I realize that the design of the Single Select looks nicer than plain text, but as you can see, that field type doesn’t allow the selected option to be set via a formula.