Create table from document and return value if found

Hi @andnesper,

You can use below code to get only column value start with 4.
Dt=Dt.Select("ColumnName like '4℅'"). CopyToDataTable()

If you want to count of the column name start with 4 then use below code.
IntCount=Dt.Select("ColumnName like '4℅'").length

Regards,
Arivu :slight_smile: