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
settu_periasamy
Master III
Master III

Hi,

is there any purpose to add the row number in dimension?

if you just want to show the row number,

put the RowNo(TOTAL) in Expression, Move it to Dimension side.

Not good. But ok. 🙂

Capture.JPG

Qrishna
Master
Master

You can use in dimension also. like a calculated dimension.

If you got the answer please close the thread as answered.

Thanks

settu_periasamy
Master III
Master III

I think, we can't use the RowNo() as a Calculated Dimension.

Not applicable
Author

Hi Krishna,

    Please Give the Screen shot...the attached file can't open in my system.

Thanks & Regards

Jammula

Qrishna
Master
Master

I guess we can.

try writing =Aggr(only(id),name) in your chart.

in script,put

rowno() as id.

Qrishna
Master
Master

load *,

rowno() as id;

load * inline [

name,sal

kiran, 40

naresh, 20

raja, 10

raju, 50

suresh, 30

];

Qrishna
Master
Master

Any luck?