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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Concatenating 4 QVD's

Below is my QVD script. I am concatenating 3 QVD's with the first QVD which I name PT_Data. When the script executes, I only get records for the 1st QVD.

What do I need to do to append the other 3 QVD's

Thanks

Glen









SET ThousandSep=',';

SET DecimalSep='.';

SET MoneyThousandSep=',';

SET MoneyDecimalSep='.';

SET MoneyFormat='$#,##0.00;($#,##0.00)';

SET TimeFormat='h:mm:ss TT';

SET DateFormat='M/D/YYYY';

SET TimestampFormat='M/D/YYYY h:mm:ss[.fff] TT';

SET MonthNames='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';

SET DayNames='Mon;Tue;Wed;Thu;Fri;Sat;Sun';

PT_Data:

LOAD MT_VISIT,

AdmitDateTime,

Disch_Date,

LOS,

FacilityName,

FAC_INS,

InpatientOrOutpatient,

PatientID,

InsuranceID,

Month,

Year,

TYPE,

F_NAME,

REGION,

INS_NAME,

AdjustmentTotal,

BAL,

BarStatus,

CHARGES,

RECEIPTS,

REFUNDS

FROM

EH.qvd

(qvd);

Concatenate ("PT_Data")

LOAD MT_VISIT,

AdmitDateTime,

Disch_Date,

LOS,

FacilityName,

FAC_INS,

InpatientOrOutpatient,

PatientID,

InsuranceID,

Month,

Year,

TYPE,

F_NAME,

REGION,

INS_NAME,

AdjustmentTotal,

BAL,

BarStatus,

CHARGES,

RECEIPTS,

REFUNDS

FROM

NH.qvd

(qvd);

Concatenate ("PT_Data")

LOAD MT_VISIT,

AdmitDateTime,

Disch_Date,

LOS,

FacilityName,

FAC_INS,

InpatientOrOutpatient,

PatientID,

InsuranceID,

Month,

Year,

TYPE,

F_NAME,

REGION,

INS_NAME,

AdjustmentTotal,

BAL,

BarStatus,

CHARGES,

RECEIPTS,

REFUNDS

FROM

SB.qvd

(qvd);

Concatenate ("PT_Data")

LOAD MT_VISIT,

AdmitDateTime,

Disch_Date,

LOS,

FacilityName,

FAC_INS,

InpatientOrOutpatient,

PatientID,

InsuranceID,

Month,

Year,

TYPE,

F_NAME,

REGION,

INS_NAME,

AdjustmentTotal,

BAL,

BarStatus,

CHARGES,

RECEIPTS,

REFUNDS

FROM

SW.qvd

(qvd);





2 Replies
lblancher
Partner - Contributor III
Partner - Contributor III

Hi,

From a quick look at your script, can you replace the Concatenate("PT_Data") with Concatenate(PT_Data). You don't need to wrap your table name in quotes.

Lucas Blancher

BizXcel Inc.

www.bizxcel.com

Not applicable
Author

Thanks

That did it.