I have some code for move text from cell to cell
Dim startIndex As Integer
Dim toIndex As Integer
Dim f As String
Dim g As String
For startIndex = 50 To 60 Step 2
toIndex = Str(startIndex + 1)
f = "F" & Str(toIndex)
g = "G" & Str(startIndex)
Range(f).Value = Range(g).Value
Range(g).Value = ""
Next startIndex
But variable f has “F 51” value instead of “F51”.
How solve this problem ?
p.s. It’s my first code on vba.
You could
TRIM()thetoIndexorREPLACEspaces in the end result, i.e.example lifted from here: http://www.techonthenet.com/excel/formulas/replace.php
So…