Hi all,
Here is the code that I have:
I get this error:
Public member 'Value' on type 'String' not found.
What should I do?
Here is the code that I have:
Code:
For h = 2 To dt.Rows.Count - 1
For j = 0 To 11
Excel.Cells(h, k).value = (dt.Rows(h).Item(j).Value).ToString
k += 1
Next
Next
I get this error:
Public member 'Value' on type 'String' not found.
What should I do?
Comment