Remove everything after first comma in an entire column of a datatable without for each

@ammohan

Use split operation you will get output, Please find the below example

Ex: Input is a variable
Input =“12344, 87907”

  Syntax - Input.toString.split(",".ToCharArray)(0) 

Using this syntax you will get Output as 12344

Thanks
Varun