Hi there.
So I had a long message ready but it was deleted for some reason when i typed "post".
So here's a shorter version.
I have an attendance app and wish to add the number of attendants in each line and then add numbers from previous lines.
Each line consists of following:
PlusOne (Significant others)
PlusKids (0-4 kids per)
Employee (Always 1 because it counts the person who signed up)
Each event has a MaxAttendants that when reached changes all lines to red where the number is higher than the number of allowed attendants.
Here is a table example to show you what i mean
Max attendants for event is 20
| Name | PlusOne | PlusKids | Employee | Total |
| Andy1 | 1 | 0 | 1 | 2 |
| Andy2 | 1 | 1 | 1 | 5 |
| Andy3 | 1 | 2 | 1 | 9 |
| Andy4 | 0 | 3 | 1 | 13 |
| Andy5 | 0 | 4 | 1 | 18 |
| Andy6 | 0 | 0 | 1 | 19 |
| Andy7 | 0 | 1 | 1 | 21 |
| Andy8 | 1 | 1 | 1 | 23 |
| Andy9 | 0 | 1 | 1 | 25 |
I am using sharepoint as data source and the list is called "EventAttendants"
Any ideas how to count the total like in the table?
I am hitting my head against a wall trying to figure it out.
Thank you in advance