06-30-2010, 11:42 PM
Hi Shreyya,
Refer the below example and implement accordingly.
Refer the below example and implement accordingly.
Code:
str="Sunday Monday Tuesday"
d=Split(str," ") [b]' here string 'str' got splitted using " " (single space) as a delimiter and an array 'd' got created.[/b]
For i=lbound(d) to Ubound(d)
msgbox d(i) [b] 'display the Array elements[/b]
Datatable.Value("Test_Column",dtglobalsheet)=d(i) [b]'Array Values will get posted into Run Time Datatable.[/b]
Next