Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to create Random number within specific range in Qlikview/Qliksense in script ?

Hi,

How can we create random number between specific range.

Let us suppose we need to generate random no. between 0.85 to 1.05, how can we do it ?

Thanks in advance.

1 Solution

Accepted Solutions
petter
Partner - Champion III
Partner - Champion III

[TenRandomNumbers]:

LOAD

     Rand() * (1.05-0.85 ) + 0.85  AS myRandomNumber

AUTOGENERATE

     10;

If you need it to include 1.05 exactly then add a Round()-function like this

     Round( Rand() * (1.05-0.85 ) + 0.85 , 0.01) AS myRandomNumber

View solution in original post

2 Replies
petter
Partner - Champion III
Partner - Champion III

[TenRandomNumbers]:

LOAD

     Rand() * (1.05-0.85 ) + 0.85  AS myRandomNumber

AUTOGENERATE

     10;

If you need it to include 1.05 exactly then add a Round()-function like this

     Round( Rand() * (1.05-0.85 ) + 0.85 , 0.01) AS myRandomNumber

Not applicable
Author

Thanks a lot, it worked.