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

Announcements
Talend Cloud AWS EU Scheduled Outage: Starting Tues 26 May 21:00 CEST with expected completion Wed 27 May 01:00 CEST
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Issue with > sign

Hi All,

I am trying to write a code for Incremental load, however I am facing some error in regards to greater than sign >.

I have attached the print screen of the error, it states  "Filed not Found  - <> >"

The syntax I have used is

LOAD [Row ID],

     [Order ID],

     [Order Date],

     [Ship Date],

     [Ship Mode],

     [Customer ID],

     [Customer Name],

     Segment,

     Country,

     City,

     State,

     [Postal Code],

     Region,

     [Product ID],

     Category,

     [Sub-Category],

     [Product Name],

     Sales,

     Quantity,

     Discount,

     Profit

FROM

(biff, embedded labels, table is Orders$) where [Order Date]>$(MaxDate);

Thanks in Advance

Labels (1)
1 Solution

Accepted Solutions
tresB
Champion III
Champion III

How do you define your variable? Try puttiing single quotes around your $ expansion like:

...where [Order Date]>'$(MaxDate)';

View solution in original post

6 Replies
Anonymous
Not applicable
Author

How you have declared MaxDate??

Anonymous
Not applicable
Author

tresB
Champion III
Champion III

How do you define your variable? Try puttiing single quotes around your $ expansion like:

...where [Order Date]>'$(MaxDate)';

ahmar811
Creator III
Creator III

Agreed with tresesco

Not applicable
Author

Thanks guys, your solution worked

jagan
Partner - Champion III
Partner - Champion III

Hi,

All date and string values should be in single quotes in where condition like below

(biff, embedded labels, table is Orders$) where [Order Date] > '$(MaxDate)';


Hope this helps you.


Regards,

Jagan.