Hi Joseph,
Welcome to the community!
It would be much easier to help you if you would share your doc.
But anyway, here’s a couple of pointers:
- I would recommend you to try to minimize the number of tables, specially when the objects are so similar (in this case both are points).
If I were you I would delete the second table and just add a ‘Type’ column in your original table with possible valuesAcademic
andStudent
. You won’t need to replicate all the common columns and formulas saving time and avoiding errors like the one you are experiencing. - You don’t need to stack
filter()
formulas, it’s probably worse for performance and not as flexible as usingAND
orOR
between conditions.
This is how the formula would look like if you follow my tips
Points.Filter(type=Academic AND Name=thisRow.Name AND Date=Today()).sum()
Let me know if this helps you,
Pablo