Hi All,
I have numbers between 1-100 and I want to display the 5 multiples and 5 included numbers.
Sample output: 5,10,15,20,25,30.................. 50,51,52,53,54,55,56,57,58,59,60,65,70...............95,100.
Discussion posts and replies are publicly visible
a!localVariables( local!sample:a!forEach( items: enumerate(100)+1, expression: {if(find(5,fv!index,1),fv!index,{}), if(mod(fv!index,5),{},fv!index) } ), local!data:union(local!sample,local!sample), local!data)