Hi All,
I have numbers between 100-200 and I want to display the 5 multiples and 5 included numbers.
Sample output: 105,110,115,120,125,130,135,140,145,150,151,153,154,155,156,157,158,159,160,165,170,175,180,185,190,195,200
Discussion posts and replies are publicly visible
We just had something similar here: community.appian.com/.../displaying-multiples-of-5-from-1-100-include-every-value-which-is-having-number-5
a!forEach( items: enumerate(100)+100, expression: if(or( mod(fv!item,5)=0, find(5,fv!item)<>0 ), fv!item, {} ) )