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

How to solve the synthetic key problem?

Hi,

I have problems in synthetic key. How I can remove the synthetic key in my QLikview?

sync.PNG

The data I pull from sharepoint are from different lists, The RAE, CWF and the Intern are from 3 different list.

Can anyone helps me with this?

Regards,

KAma

2 Replies
simenkg
Specialist
Specialist

Concatenate them together.

Employees:

Load *,

          'RAE' as EmployeeType

from RAE.qvd (qvd);

Concatenate (Employees)

Load *,

        'CWF' as EmployeeType

from CWF.qvd (qvd);

Concatenate (Employees)

Load *,

     'Intern' as EmployeeType

from Intern.qvd (qvd);

Not applicable
Author

Hi,

Where should i put the Concatenate?