Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello all,
Please find below attached QVF and data source.
I am trying to achieve below output.
posting_id | country |
551410 | BN |
551410 | IR |
551410 | TH |
551410 | TH |
551410 | IN |
551410 | UA |
551410 | IN |
551410 | Canada |
Hi,
A concatenate statement could create that. The real question is what are you trying to do with the data?
Data:
LOAD
posting_id,
country
FROM [lib://Desktop/clients_data.xlsx]
(ooxml, embedded labels, table is Sheet1);
Concatenate (Data)
LOAD
posting_id,
country
FROM [lib://Desktop/newtenders_data.xls]
(biff, embedded labels, table is tenders$);
Best,¨
Ali A
Hi,
A concatenate statement could create that. The real question is what are you trying to do with the data?
Data:
LOAD
posting_id,
country
FROM [lib://Desktop/clients_data.xlsx]
(ooxml, embedded labels, table is Sheet1);
Concatenate (Data)
LOAD
posting_id,
country
FROM [lib://Desktop/newtenders_data.xls]
(biff, embedded labels, table is tenders$);
Best,¨
Ali A