The last login date < today’s date
I need to use this data for further processing. Which is the best way?
If you have any sample workflow please could you share?
As it is structured data use Data scraping Activity to read the data and will give you output as dataTable and say ‘DT’. And then try below expression to filter it.
I have a date column in my excel data table. I have to filter out based on dates less than today. How do I do it? Could someone help me with the logic.
Fine
we can mention like yourdatatablename = yourdatatablename.Select("[youcolumnname] < ’ # Now.ToString(yourdateformat) # ’ ").CopyToDatatable()
where yourdateformat means the dateformat of the value from the date column in your excel
we can check that with a simple write line activity like row(“yourdatecolumnname”).ToString
which will give us the value of date in output panel from where we would know the format and mention the same date format there in the above Now.ToString(yourdateformat)