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!forEach( items: enumerate(100)+1, expression: if(or( mod(fv!item,5)=0, find(5,fv!item)<>0 ), fv!item, {} ) )