Skip to main content
Announcements
NEW: Seamless Public Data Sharing with Qlik's New Anonymous Access Capability: TELL ME MORE!
cancel
Showing results for 
Search instead for 
Did you mean: 
sagaraperera
Creator
Creator

$syn

I want to withdraw $ syn are cause it to below picture. Why are the sketch and description, claims a table number. Method to clarify concerns, and to make the table from $ syn.

Untitled.png

sagara

3 Replies
prma7799
Master III
Master III

Hi,

Can you post some sample data?

Or you can you Qualify , unqualify operator to remove  $syn.

Thanks

PM

PrashantSangle

Hi,

There are various solutions to avoid Synthetic Key.

Some of them are.

1)Create Link Table

2) Create Key and Rename other fields

Read article wriiten by Henric about Data Modeling gives you brief idea.

Search it, you will found so many good solutions.

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
jagan
Luminary Alumni
Luminary Alumni

Hi,

You have more than one field common in P&LBudDate and P&LDATA2011-2014, that is why you are getting this Synthetic key.  To overcome this you need to Concatenate both the tables like this

Data:

LOAD

*,

'Budget' AS DataType

FROM P&LBudDate;

Concatenate(Data)

LOAD

*,

'Actual' AS DataType

FROM P&LDATA2011-2014;

Regards,

Jagan.