How to change the date format and filter data

how to change the date format and how to filter the data by removing hr in it
SampleCSVFile_2kb .xlsx (12.2 KB)
sheet1 is input and sheet 2 is output

Hi @anjani_priya

Can you try the below sample?

Cheers!!

the data should filter in same sheet

Hi @anjani_priya

Try with This LINQ expression

  1. Read the Excel file store it in DT variable
  2. Use Assign activity
Dt_Out = DT.AsEnumerable().Where(Function(x) x("Column Name").ToString.Trim.Equal("it")).CopyToDataTable
  1. Use Write rnage activity → pass the Dt_Out

@anjani_priya

How about this

image

Hope this helps!!

how to change the date format


Capture67
like this

how to change the date format .

I have to remove the last row also

how to change the date format

@anjani_priya

Try this

Regards,