Jul 26, 2017 12:43 PM
Hi,
I’m a self employed sales manager. I use Airtable to organise my seminars and contacts. In the Contact tab i have a row called Status. This is a dropdown menu with the options Succes, Lost, No contact.
I want to count in my seminar tab how many leads are a Succes.
What formula do i use?
Rollup: Contacts
Field: Status
Formula: ?
Thanks in advance!
Giovanni
Jul 26, 2017 06:26 PM
Do you need this as a column for something? You can accomplish this using a column summary if you make a view that groups by Status.
Jul 27, 2017 12:40 AM
(I assume you mean that in your Contact table there is a field [or column] called ‘Status’, which is a single select field with three options.)
In your Contacts table, create a new field called ‘Success’. Make it a formula field with this formula:
IF(Status = "Success","Y","")
In the Seminar table, create a rollup field called ‘TotalSuccesses’ with this configuration:
Table to summarize: Contact
Field to roll up: Success
Aggregation function: COUNTA(values)
That will give you a count of successful contacts resulting from each seminar.
Jul 27, 2017 03:52 AM
This worked, thank you!