Hi All,

I need a function that only allows Increments by 10, 20, 30.....

How do I achieve this in VB Script?

Any help is appreciated.

TIA,

--

Santosh

Re: Increments by 10, 20, 30 .... by McKirahan

McKirahan
Thu Dec 30 08:22:11 CST 2004

"Santosh" <santoshNoSpam@NoSpam.net> wrote in message
news:usrwvik7EHA.2276@TK2MSFTNGP09.phx.gbl...
> Hi All,
>
> I need a function that only allows Increments by 10, 20, 30.....
>
> How do I achieve this in VB Script?
>
> Any help is appreciated.
>
> TIA,
>
> --
>
> Santosh

For i = 0 To 1000 Step 10
...
Next