Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I want to filter invoice data based on invoice date greater than 1 Jan 18.
how can i implement this using tfilter? do i need to use advanced mode ?
Hi Pankaj,
In advanced mode, try this :
input_row.date.after( TalendDate.parseDate("yyyy-MM-dd","2018-01-01"))
What you put in the parseDate depends of the format of your date. Here i'ts an example.
Hi Pankaj,
In advanced mode, try this :
input_row.date.after( TalendDate.parseDate("yyyy-MM-dd","2018-01-01"))
What you put in the parseDate depends of the format of your date. Here i'ts an example.