I would like to figure out how long a series will last on the basis of the sum of several wait blocks.
For instance, if I have the following steps and wait blocks:
- Wait block = 10 days
- Banner up to 6 days
- Wait block = 5 days
- Banner up to 2 days
How should I compute the min and max duration of this sequence ? Based on my current understanding it would be :
Min = 10 + 5 + 1 = 16 days ?
Max = 10 + 6 + 2 = 18 days ?
When we add a wait block of 10 days, the subsequent event starts on day 10 or 11 ?