A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
This formula will reset at 8 while carrying over the remaining hours:
=LET(Total,B1+A2,IF(Total>=8,Total-8,Total))
Kevin
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi! I am hoping someone can help :)
I am trying to get a running total for a duration, that part is easy enough, but I need the summing to stop when the total reaches the number 8, and then have it start counting again.
For context, I am working on a schedule, the schedule is broken down by how many hours each task takes ( most tasks are no longer than 2 hours) so I need to add up multiple items to see what will fit into working hours and then have the count start again so that I can figure out how many tasks will fit into each working day.
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
This formula will reset at 8 while carrying over the remaining hours:
=LET(Total,B1+A2,IF(Total>=8,Total-8,Total))
Kevin
That is perfect! Thank you!!