Forum Discussion
Antoine74
May 11, 2023Copper Contributor
Disbursement scenarios
Dear Community, I am asking for help : - I am builing a business plan (BP) ; - an important feature of this BP is a series of 5 investments that will cause cash outflows ; - for each of these i...
PeterBartholomew1
May 11, 2023Silver Contributor
I haven't got as far as NikolinoDE when it comes to scenario management. You will clear need some steering data to set up your problem. I would start by setting up a timeline and a Lambda function that distributes a given outflow along the timeline.
Worksheet formula
= Outflowλ(start, occurrences, periodicity, amount, periodCounter#)
where the function 'Outflowλ' is defined by
= LAMBDA(start,occurrences,periodicity,amount,periodCounter,
LET(
outflow, SEQUENCE(occurrences, , start, periodicity),
BYCOL(IF(periodCounter=outflow,amount), SUMλ)
)
)
Antoine74
May 11, 2023Copper Contributor
Thanks a lot PeterBartholomew1 and NikolinoDE !