Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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.