@sonesh.bansal ok fine,even i don’t have idea on that let’s see if any our forum members will find it. i think @lakshman@Palaniyappan can clear our query.
I want to filter datatable with multiple rows with following conditions in two columns where
Coloumn named: Supp Status should be “LIVE”
It is working as it is a string
Column named “Send Date” should filter all the dates which are current date-10 days. It is a date column and I think we should covert this column to date first.
Fine
Kindly try with this buddy ExtractDataTable. Select(“[Supp Status]= ‘LIVE’ AND [Send Date]=#” + DateTime.Now.AddDay(-10).Tostring() + "# ").CopyToDataTable()
Yeah I have checked, you have build data table and assigned “Name” and given a desired value by declaring a variable.
My date column name from the scraped data is “Send Date” which is not a valid variable name.
Error from my workflow above: No rows in source data
I have the rows count of 90 when in ExtractDataTable.
FinItems is working for all columns except Send Date for which I am not able to filter
Please modify your data table in your example and try with the following three columns:
Supp Status Send Date Status
LIVE 05/31/2019 Ready
LIVE 06/07/2019 Ready
LIVE 06/12/2019 Ready
LIVE 06/12/2019 Ready
LIVE Ready
LIVE 06/18/2019 Ready
SENT 06/18/2019 Ready
Could you please try with the above data table without changing the column names and output should be Supp Status= LIVE and Send Date= current date-10days