I have a excel with 3 columns-Name, amount and date.I want to filter date column with future date. i want to remove all the rows with future dates. .
Is there any way to do this either by using linq query or filter data table
Hello @amruta_George , Initially just read the excel and check the output of date using message box what can bot read. As per output you can frame the String format, you may get results
For Example Bot maybe read data as MM/dd/yyyy instead of dd.MM.yyyy
So please check it and design the string format
@amruta_George try this
InputString=“28.12.2015” InputDate = Datetime.ParseExact(InputString,“dd.MM.yyyy”,System.Globalization.CultureInfo.InvariantCulture)
Where InputDate is a variable of type DateTime
Now you can comapare with currentDate string as “dd.MM.yyyy”