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

Announcements
Learn how to migrate to Qlik Cloud Analytics™: On-Demand Briefing!
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

1 Solution

Accepted Solutions
tresesco
MVP
MVP

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??

tresesco
MVP
MVP

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.