Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Please provide the logic to generate numbers from 50.00 to 99.99.
hello
something like
for i=5000 to 9999
let nb=i/100;
next i
adapt it to your need
Hi you can use rand() function it gives random values between 0 and 1.
You can write
50+Rand()*50
Regards,
Devyanshu
Hi,
to generate random numbers ?
if so :
50 + rand()*50
regards
LOAD
50000+RECNO() AS Nr
AutoGenerate(10000-5000);
What purpose you used this? May be like
LOAD Num(RowNo() + 49.00,'##.00') as Field
AutoGenerate 50;
That depends on your number step. Try the below code where you can even set your step:
Let vStep=0.1;
Load
(RowNo()-1)*$(vStep)+50 as Num
AutoGenerate (99.99-50)/$(vStep);