May 30, 2020 12:42 AM
Hi there,
I’ve taken to Airtable recently to catalog all my acquired clients. I have a single select field called ‘$Flow’ that tells when the current status of the client in the sales funnel, for example: Made contact, Talking, Email, Won, and Lost.
What I want is a formula that can tell me exactly when I win a client over. I.E. when I turn the single select field from any other option to ‘WON’ the date (and time, if possible) should be captured in the formula column.
I used the formula: IF({$Flow}=“Won”, NOW())
But the date always resets every time I reopened the table, not when I originally turned the option to WON. Does anyone have any suggestions that could help?
Thanks
Yashwant.
Solved! Go to Solution.
May 31, 2020 03:10 PM
Another approach not requiring Zapier would be to keep the general idea of your formula, but use LAST_MODIFIED_TIME()
instead of NOW()
IF({$Flow} = "Won", LAST_MODIFIED_TIME({$Flow))
This should only show you the day/time when the status is changed to “Won”. If you change it to something else it will disappear. Assuming there isn’t another step after “Won” captured by this field, this should work fine.
May 30, 2020 01:07 AM
It is expected behavior since Now() is always Now :slightly_smiling_face:
What I suggest is keep the formula as it is but do the following:
If this answer helps, please mark it as Solution so others can see it and benefit from it.
BR,
Mo
May 31, 2020 03:10 PM
Another approach not requiring Zapier would be to keep the general idea of your formula, but use LAST_MODIFIED_TIME()
instead of NOW()
IF({$Flow} = "Won", LAST_MODIFIED_TIME({$Flow))
This should only show you the day/time when the status is changed to “Won”. If you change it to something else it will disappear. Assuming there isn’t another step after “Won” captured by this field, this should work fine.
Jun 02, 2020 03:39 AM
Hey! This is exactly what I was looking for thank you so much for this!