Problem:
I need to get the datatable that have values 1231-1250 in the Account_No column.
Given:
I should only get:
Account_No
1231-bc
1232-dg
1234-ab
1239-dn
1250-as
Is there a way to get the substring of the values in Account_No to get the first 4 digits then convert them to int32? Then afterwards, we filter the data via account_no >1231 AND account_no< 1250?
Thanks!