Jun 19, 2022 09:20 AM
I have 10 fields in a table, and some contain numbers and the others either a letter or a symbol, in the same table I would like to have another field that sums up the values of the numbers only in that record. Is there a simple way/formula to do this?
Does Airtable have an equivalent formula to excel’s SUMPRODUCT & ISNUMBER?
Best
Ladi
Jun 19, 2022 12:45 PM
You can try a formula like:
SUM(
VALUE({Field 1}),
VALUE({Field 2}),
VALUE({Field 3})
)
If that doesn’t work, can you post a screenshot of some sample data?
Jun 19, 2022 10:48 PM
This is perfect, thanks
Jun 19, 2022 11:37 PM
Hello Kamille,
Another question, here is a simple base Airtable - Grid view
I would like to create 3 separate fields, one that counts up the number of DOTS in the 6 fields, one that counts the number of Ws in the 6 fields and one that counts the number of WKTS in the 6 fields.
What formula would I use for that please?
Best
Ladi
Jun 20, 2022 09:10 AM
Declarative statements like {Field Name = “value” will return a 1 if true and a 0 if false. So:
SUM(
{Field 1} = "W",
{Field 2} = "W",
{Field 3} = "W"
)
^ use the same idea for DOTS and WKTS.
Jun 20, 2022 10:34 AM
Thank you very much. One final formula question, if I have 20.3 as a number in a field, how can I extract the 20 and then the 0.3? It’s a weird question I know but I this is what I am looking to do for a specific calculation requirement for cricket