Need help how to sum all record (price) from airtable


Hi Guys, how do i sum all record(price) from airtable to show on Label?

What do you mean?

i mean get the data from the airtable, then sum it, and show in on Label

You can do this:
image

1 Like

but that only show 102030, it does not add all of it @.@

1 Like

OK, then initialize a variable called ‘all items for sum’ to an empty list. Then, do:

For each item j in list list of values in (your airtable base)
in list all items for sum insert at last as j.

Then, do

sum of list all items for sum.

1 Like