Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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.