I have a form that users submit each week to log hours. I have a table that captures each submission in a new row along with how many hours they have left in total (not per week). I have fields that capture the hours logged that was submitted, the total available hours, and how many hours are left, but I am unable to get it to add up all of the hours for a single user and then provide me with the remaining hours.
As an example,
Jane K. (1st week)
Hours logged this week = 4. Total available hours = 20. Remaining hours = 16.
Jane K. (2nd week)
Hours logged this week = 10. Total available hours = 20. Remaining hours = 10.
How do I get the 'Remaining hours' total to be 6 (4 + 10 = 14 minus 20)? I would like to base it off of the first field in my table which is a concatenation of two values.
Thanks!