Hi Andy, to make sure I understand correctly, is your calculation similar to this? Let's say we want to calculate a 'cumulative value' where each day's value is the previous day's value multiplied by 2, then plus 1. So, if the first day's value is 5, the next day would be (5 * 2) + 1 = 11, and the day after that would be (11 * 2) + 1 = 23. Also, a crucial detail for us to understand is whether the 'multiplicative number' and 'additive number' are constant values that stay the same for every date, or if they change from date to date. OR are taking from a 'column'? Could you please clarify this?
Is this the general concept you're working with?