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)
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
Try below steps:
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
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
Output Sheet
Without writing the filter values in Sheet 2 you can do your manipulations it FilterDT variable itself.
Hope it helps,
Thanks!!