Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
erickd1190
Contributor III
Contributor III

Fiscal Year: Cannot find field

Hi All,

I am getting this error whenever I try to load my Master Calendar for our Fiscal Year.

"Cannot find field"

Here is what my script looks like:

Table 1:

CCM:

LOAD

    visitdate,

    visitid,

    client_id,

    service,

    staffid,

    provider,

    cpt_code,

    program,

    transfer_date,

    "rate",

    emp_status

FROM [lib://Q-CCM (tbh_erickd)]

(XmlSimple, table is [Envelope/Body/ExportDataSetResponse/ExportDataSetResult/diffgram/NewDataSet/Table]);

// Master Calendar for fiscal year

Calendar:

Load Dual(fYear-1 &'/'& fYear, fYear) AS FYear,

  Dual(Month, fMonth) AS FMonth,

    *;

 

Load Year + IF(Month>=$(vFM), 1,0) As fYear,

  Mod(Month-$(vFM),12)+1 As fMonth,

   *;

Load Visitdate,

Year(Visitdate) As Year,

Month(Visitdate) as Month,

Week(Visitdate) as Week,

From Resident CCM;

I apologize if this is elementary stuff, I have looked over the information here on the forum but it hasn't clicked just yet.

Any wisdom would be greatly appreciated!

Erick

11 Replies
erickd1190
Contributor III
Contributor III
Author

When running the debugger I get  "Cannot find field "From". And when I remove "From" from the script I get a syntax error saying I am missing "From".

Thanks,

Erick

erickd1190
Contributor III
Contributor III
Author

That comma was the issue. I must of looked over it more than a dozen times.

Thank you!!!