How to exclude "Null" and "0" and store to Array variable?

@Dorothy_lee

Try below expression before converting it to array.

            Dt_keyword = Dt_keyword.Select("Name <> 'Null' or Name <> '0'").CopyToDataTable
2 Likes