Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
grigby
Contributor II
Contributor II

Update Table based on Excel Worksheet

Hi,

 

Some guidance/help requested.

 

An excel worksheet contains data that needs to be used to update a table. There are 10 columns in the worksheet, but only one of the columns contains the data thatneeds to be update in the table. The worksheet also contain a column with the record number, whcih matche the record found in Talend (.e record 23 on the worksheet matches record 23 in Talend.

 

What is the easiset job that can be created to complete this task?

Labels (2)
1 Solution

Accepted Solutions
lojdr
Creator II
Creator II

Hello,

0683p000009LsXr.jpg

 

 

 

 

 

 

1) tFileInputExcel will select all columns (or subset)

2) tFilterColumns will filter rest of unneeded columns

3) tMySQLOutput will update table

 

ad 3) Be sure, that you use checkbox for Key to inform Talend which value should be used for lookup.

 

Hope it helps.

Lojdr

View solution in original post

2 Replies
lojdr
Creator II
Creator II

Hello,

0683p000009LsXr.jpg

 

 

 

 

 

 

1) tFileInputExcel will select all columns (or subset)

2) tFilterColumns will filter rest of unneeded columns

3) tMySQLOutput will update table

 

ad 3) Be sure, that you use checkbox for Key to inform Talend which value should be used for lookup.

 

Hope it helps.

Lojdr

grigby
Contributor II
Contributor II
Author

Thanks.