Hi Everyone,
i am trying to display numbers from 105 but the output should be : {105,110,115,120,,125,130,135,140,145,150,151,152,153,154,155,156,157,158,159,160,165,170,175,180,185,190,195,200},
i have tried but after 105 iam getting 115,Here sharing my code
a!localVariables( local!data: 101 + enumerate(100), index( local!data, where(like(touniformstring(local!data), "*5*")) ))
Thank You In Advance
Discussion posts and replies are publicly visible
Did you manage to solve it?
awesome tanks 2
Looks like by the 'verified' answer above they were able to solve it.
Old post but interesting issue, hence posting this code for anyone else interested in it.
a!localVariables( local!startNUmber: 105, local!endNUmber: 200, local!diffrence: 5, local!diff: ( (local!endNUmber - local!startNUmber) / local!diffrence ) + 1, { local!startNUmber + enumerate(local!diff) * local!diffrence } )