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

I have a straight table with multiple dimensions and measures .how to generate a dimension with numbers(1-100) how to get in ui level.

I have a straight table with multiple dimensions and measures .how to generate a dimension with numbers(1-100) how to get in ui level.

16 Replies
Qrishna
Master
Master

use rowno() or autonumber function in your script.

Something like below.

load rowno() as ID,

dimension1...

from ----

now you can use that id.

Not applicable
Author

i did not get you, what you are exactly looking for

antoniotiman
Master III
Master III

ValueLoop(1,100)

Not applicable
Author

Hi Krishna,

   I want only in UI level not in script level

Thanks & Regards

Jammula

Not applicable
Author

Hi Antonio,

    Its not working...

Thanks & Regards

Jammula

Qrishna
Master
Master

it should work else could you please post sample data.

Capture1.PNG

Not applicable
Author

Hi Krishna,

   Please find the attachment...

Thanks & Regards

Jammula

antoniotiman
Master III
Master III

e.g.

Dimension     ValueLoop(1,10)

Expression    If(ValueLoop(1,10)=1,Avg(Total <YourDimension> Sales)

                      If(ValueLoop(1,10)=2,Sum(Total Value)

and so on

similat to ValueLIst('Average','Perormance','Min','Max)

Qrishna
Master
Master

See attached.

Capture1.PNG