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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Identity column

The data which I am loading (from Excel) doe not have an unique identifier on each row.

Is it possible to have QV to assign a unique integer per row?

This is to make sure my tables display correctly etc.

thanks

1 Solution

Accepted Solutions
MayilVahanan

Hi,

    

     Try this,

     Load *, rowno() as uniqueIdentifier;

     Load * from [FileName].xls

     Hope it helps.

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

2 Replies
mphekin12
Specialist
Specialist

You could try the recno() function in your load script.

MayilVahanan

Hi,

    

     Try this,

     Load *, rowno() as uniqueIdentifier;

     Load * from [FileName].xls

     Hope it helps.

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.