Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
How can we create random number between specific range.
Let us suppose we need to generate random no. between 100000 to 999999, how can we do it ?
Thanks in advance.
100000 + Floor(900000*Rand())
100000 + Floor(900000*Rand())
Thanks! It worked.