Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Numeric to Text

I'm having trouble getting the Client data to execute in the script. Here is the script I used, but when I reload it says there is an error

Client:

SQL SELECT

      [ProfileNo],

      [PatientName],

      [PatientTelNo],

      [ContactName],

      [ContactTelNo],

      [ContactCellNo],

      [ContactAddress1],

      [ContactAddress2],

      [ContactAddress3],

      [CallIncrementFlag],

      [InitialCallDate],

      [RamsNo],

      [Notes],

  FROM [CCP_Compliance].[dbo].[ex_ProfileMaster];

**************the entire script reads

Pharmacy:

SQL SELECT

     [ramsno],

     [PharmacyName]

  FROM [CCP_Compliance].[dbo].[ref_Pharmacies];

Client:

SQL SELECT

      [ProfileNo],

      [PatientName],

      [PatientTelNo],

      [ContactName],

      [ContactTelNo],

      [ContactCellNo],

      [ContactAddress1],

      [ContactAddress2],

      [ContactAddress3],

      [CallIncrementFlag],

      [InitialCallDate],

      [RamsNo],

      [Notes],

  FROM [CCP_Compliance].[dbo].[ex_ProfileMaster];

LOAD agentcode,

     agentname,

     callduration,

     callid,

     id,

     profileno as Client,

     ramsno as 'Pharmacy Name',

     statedescription,

     timestamp

FROM

C:\Users\chrisg\Documents\CallLogs.qvd

(qvd);

2 Replies
m_woolf
Master II
Master II

Notes shouldn't have a comma

Anonymous
Not applicable
Author

Wow, silly mistake.

Thanks