Will the owner always be the same? If so, we can just make an automation and set the value from there
If the owner’s going to be different each time, it’ll depend on how we’re deciding which owner should get the contact
Will the owner always be the same? If so, we can just make an automation and set the value from there
If the owner’s going to be different each time, it’ll depend on how we’re deciding which owner should get the contact
There will be 4 different owner and I want to define the owner randomly
There will be 4 different owner and I want to define the owner randomly
Unfortunately there’s no easy way to randomly pick an option on Airtable. If each owner can have an equal share that would be pretty simple to build though
Unfortunately there’s no easy way to randomly pick an option on Airtable. If each owner can have an equal share that would be pretty simple to build though
I was thinking of a way to do it but I’m blocked :
Column1: Add a column “Automatic number” → 1,2,3,4,5,6,7,8,9,10,11,12 …
Column2: Tell Airtable to take only the last number of the column1 with the formula : Right(Automatic number,1)
Column3: Add a fonction that tell for example : If(column2<3,“Sales n°1”,“Sales n°2”)
My problem is that the formula I want to use on the column2 doesn’t work with numbers on Airtable…
If someone has the solution to solve this problem it would be great !
I was thinking of a way to do it but I’m blocked :
Column1: Add a column “Automatic number” → 1,2,3,4,5,6,7,8,9,10,11,12 …
Column2: Tell Airtable to take only the last number of the column1 with the formula : Right(Automatic number,1)
Column3: Add a fonction that tell for example : If(column2<3,“Sales n°1”,“Sales n°2”)
My problem is that the formula I want to use on the column2 doesn’t work with numbers on Airtable…
If someone has the solution to solve this problem it would be great !
Hmm, I’ve put something together for you here that will assign each record equally between four people

And the formula is:
IF(
MOD(Autonumber - 1, 4) = 0,
"A",
IF(
MOD(Autonumber - 2, 4) = 0,
"B",
IF(
MOD(Autonumber - 3, 4) = 0,
"C",
IF(
MOD(Autonumber - 4, 4) = 0,
"D"
)
)
)
)
Hmm, I’ve put something together for you here that will assign each record equally between four people

And the formula is:
IF(
MOD(Autonumber - 1, 4) = 0,
"A",
IF(
MOD(Autonumber - 2, 4) = 0,
"B",
IF(
MOD(Autonumber - 3, 4) = 0,
"C",
IF(
MOD(Autonumber - 4, 4) = 0,
"D"
)
)
)
)
How that’s awesome thank you very much
Did you consider another tool than airtable for a CRM ? I found folk recently and it’s way more dedicated to contact management