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: 
Anonymous
Not applicable

%Key field link tables

I am trying to connect two tables and the data is not a one to one connection.

Table one is structured as so:

Job#QuoteQuote Cost
12345, 12346500$10,000
12347300$7,000

Table Two is structured as:

Job#Actual HoursActual Cost
12345550$11,000
12346520$10,500
12347200$6,000

Is there a way to make The Jobs 12345 and 12346 with the , separator link to two different lines so I can pull the Quote values to compare?

Thank you.    

1 Solution

Accepted Solutions
sunny_talwar

Try this

LOAD SubField(Job#, ', ') as Job#,

     Quote,

     Quote Cost

FROM....

View solution in original post

2 Replies
sunny_talwar

Try this

LOAD SubField(Job#, ', ') as Job#,

     Quote,

     Quote Cost

FROM....

Anonymous
Not applicable
Author

Thank you.