Hello,
I have an issue when extracting table data from a internal website.
When i extract the data using the wizard, the preview data shows me this:

When i loop through the dt & write line I get:
Column-0 , Column-1
1 , reference123
2, test456
3, ref789
I need:
Column-0 , Column1
1 , reference123 987 Main Street
2, test456 123 High Road
3, ref789 4 New Street
Is there a way to move the new row within column 1 up a level / format?
I have tried dt.DefaultView.ToTable("False, “Column-0”, “Column-1”) but this doesn’t seem to make a difference
