Remove/Delete rows

Hi team , i want to filter or delete those Credit amount column which have blank amount
and in description column starting from sweep , salary payment


Please help

Hi @Kuldeep_Pandey

Try with Filter Data table activity to remove the empty column in the Credit

Regards
Gokul

Hi @Kuldeep_Pandey,
use below syntax in assign activity to filter the re
dt=dt.Select("(DESCRIPTION like 'SWEEP%' or DESCRIPTION like 'SALARY PAYMENT%') and CREDIT=''").CopyToDataTable()

Regards,
Arivu

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.