Hi Team
I need to extract value from INVNO and VNAME and input it in the screen.In the INVNO for Example
GIV480595,GIV484913,GIV484917 need to extract value from one row individually and show output.
A/C:5.22603.00.00.100002S(0193901763061235)-Need to extract value (0193901763061235) from the complete account.
Hi @arjyadas,
By using following command we can get value from DataTable using Loop by increment count value DataTable.Rows(count).item(“Column_Name”).ToString
Or
By using For Each Row we can iterate the dataTable to get value
Hi Team
I want to split value GIV480595,GIV484913,GIV484917 after commas and value within bracket A/C:5.22603.00.00.100002S(0193901763061235).Do mention how to achieve it.
Hi Team
I have used the function
strINVNO.Split({“,“C}).Last.ToString.Replace(”,”,“”)
the out put is coming if two values GIV484913,GIV484917 then only last value GIV484917 is coming.How to get the two or multiple output from same row.Also also need to loop if mutiple value.Please confirm.
I attached my solution.Please let me know if you have doubt .<a class="attachment" href="/uploads/default/original/3X/b/9/b964a72cf9d4632b354324b7128f5a835797f373.zip">DailyInput.zip</a> (2.1 KB)