Hi all,
I need to read the value of a cell and store it to a string to write later.
So basically I need to read the TEXT value of (i_count, 2) at the current time, store it to sTskId, then increment my row by 1. Suggestions?
I need to read the value of a cell and store it to a string to write later.
So basically I need to read the TEXT value of (i_count, 2) at the current time, store it to sTskId, then increment my row by 1. Suggestions?
Code:
Dim i_count As Integer
Dim sTaskId As String '<---Should this be String
Do While Len(Cells(i_count, 2)) > 0
sTskId = ?
i_count = i_count + 1
Loop