Forum Discussion
smoiz
Dec 14, 2022Copper Contributor
Sum until target, give a counter/ trigger once reached target, keep summing
Hey, I've got demand data for 6 months, I would like to sum the data until the capacity of truck say 1000kg is reached. Once the column reaches the 1000 mark I would like to get a trigger/ break tha...
- Dec 15, 2022
Used the following, worked for me since I had trigger column running parallel to data. The input reference is to the capacity value at which I want a trigger.
=IF(SUM(G$7)<QUOTIENT(SUM(F$7:F8),Inputs!C$4),IF(SUM(F$7:F8)>Inputs!C$4,1,0),0)
Thanks for all the help, appreciate it.
PeterBartholomew1
Dec 14, 2022Silver Contributor
This is a 365 solution that is probably total overkill for your requirement!
=LET(
cumulative, SCAN(0,weight,LAMBDA(acc,w,IF(acc+w<=1000,acc+w,w))),
newLoad, IF(cumulative=weight,1,0),
IF(VSTACK(DROP(newLoad,1),1), cumulative,"")
)- Harun24HRDec 14, 2022Bronze ContributorVery tricky formula. Like it.