Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
rdsuperlike
Creator
Creator

versioning and autonumberhash128

I have a existing dashboard(dashboard 1)

I am trying to use below code for generating qvds on this dashboard 1

Let vDataPath = 'C:\......\.......';

FOR vCount = 0 to NoOfTables()-1

     LET vTableName = TableName($(vCount));

     STORE '$(vTableName)' INTO '$(vDataPath)$(vTableName)_new.qvd' (qvd);

NEXT vCount;

Now I want to read this qvds in a new dashboard (dashboard 2)

for each file in filelist ('C:\..\*.qvd')

  load * from [$(file)] (qvd);

next file;

I can get the exact datamodel and it works fine. But i am using lots of AutoNumberHash128 keys to join in my dashboard 1. I have about 20 tables.

I am worried if they would behave differently and not actually work properly because of autonumberhash128.

Do i need to define them again in my dashboard 2 because I am doing this for versioning?

Any help/input is appreciated.

1 Reply
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

If all qvds were autonumber() in dashboard 1, you should be able to reuse in dashboard 2 without rerunning autonumber().

-Rob