Hello.
I need to calculate the average of the entire column (called total score) but using the average formula I am getting the average of each cell. Is there any solution please?
Thanks
Average
Best answer by TheTimeSavingCo
Thank you for sharing the video.
But still, as it is my first time using Airtable, I am struggling to do what I need.
Let me provide you more information on what I have and on what I need.
So, I have this Airtable that is connected to Thunkable. Here I have a rating (used to report symptoms), and the total score (sum of each individual symptom reported). In the end, I need to create a graph to display on Thunkable, and on that graph, I want to have the average of all patients and the specific patient total score across time (I have patient name and patient ID to identify the patient).
Can you please help me with this? Because for the rollup I need to link records, but I am not sure of which records need to be linked in this case.
Thanks in advance to all that are trying to help me.
Hmm, do you know how your Thunkable app parses the data from Airtable? The way we need to deal with this is going to be heavily influenced by how your app expects the data to be formatted.
Given that you want to have a graph across time, and assuming you only want to create a graph for the 'Bladder' table, you could try:
1. Creating a new table called 'Days' or some such and link it to 'Bladder'
2. Creating a formula field with DATETIME_FORMAT that'll convert your `Created` field value into a string
3. Copying the text from step 2 into the linked field to the 'Days' table
- This should automatically create one record per unique day
4. In 'Days', create a rollup field to output the data you want. You mentioned you wanted the average, so just select the field you want the average of, then use the formula `AVERAGE(values)` and you should be good to go
This'll give you a table where each record is a single day, with the average of the field you picked from the 'Bladder' table, which allows you to create a graph across time on the X axis and the average on the Y
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.