Quote Originally Posted by emilhs View Post
is there any way to divide into two parts?
Or is there any way that count goes until certain figure and then start counting backward?
In the short answer Yes sort of.
something like
Code:
repeat
counterA = counterA + 1
LOOKUP2 CounterA,[902,902,902,884,884,884,851,851,835,820,820,806,806,792,778,765,_
            752,740,740,716,716,705,705,683,683,653,663,663,644,635,618,627,602,594,578,578,557,_
            564,549,531,531,519,513,501,492,475,465,465,456,442,434,422,414,406,389,389,373,373,_
            352,334,329,318,307,296,283,279,263,252,249,238,232,232,238,249,252,263,279,283,296,_
            307,318,329,334,352,373,373,389,389,406,414,422,434,442,456,465,465,475,492,501,_
            513,519,531,531,549,564,557,578,578,594,602,627,618,635,644,663,663,653,683,683,_
            705,705,716,716,740,740,752,765,778,792,806,806,820,820,835,851,851,884,884,884,_
            902,902,902],Freq
until counterA = 75
repeat
counterA = counterA - 1
LOOKUP2 CounterA,[902,902,902,884,884,884,851,851,835,820,820,806,806,792,778,765,_
            752,740,740,716,716,705,705,683,683,653,663,663,644,635,618,627,602,594,578,578,557,_
            564,549,531,531,519,513,501,492,475,465,465,456,442,434,422,414,406,389,389,373,373,_
            352,334,329,318,307,296,283,279,263,252,249,238,232,232,238,249,252,263,279,283,296,_
            307,318,329,334,352,373,373,389,389,406,414,422,434,442,456,465,465,475,492,501,_
            513,519,531,531,549,564,557,578,578,594,602,627,618,635,644,663,663,653,683,683,_
            705,705,716,716,740,740,752,765,778,792,806,806,820,820,835,851,851,884,884,884,_
            902,902,902],Freq
until countera = 0