How to filter data whcih i required

can anyone help me how do i filter ₹ 0.00 ₹ 0.01 from excel i tried but not happening

filter data.xlsx (8.1 KB)

Hi @T_Y_Raju

Hope it helps!!

@T_Y_Raju

1fc6747e-c1b1-42f2-bc55-3c9add0e22ce.zip (49.4 KB)

Hi @T_Y_Raju

Try below steps:

  1. Read Excel File and Check the PreserveFormat - Store in dt_Input as DataTable
  2. Take Assign Activity & use below filter expression

dt_Input.AsEnumerable.Where(Function(x) x("Compare").ToString.Equals("₹ 0.01") OR x("Compare").ToString.Equals("₹ 0.00") ).CopyToDataTable


Hope it’ll helps you :slight_smile:
Cheers!!

this will remove data from the data table right .Actually my requirement is i want to apply filter on the data do some manipulation and unfilter the data …i want original data to be retrieved… i dont want to remove any of the data

Actually the compare column data is in currency format

Hi @T_Y_Raju

See the below screenshots

Input Sheet
Input Filter

Output Sheet
Output Filter

Without writing the filter values in Sheet 2 you can do your manipulations it FilterDT variable itself.

Hope it helps,
Thanks!!