我有一些将文本从一个单元格移动到另一个单元格的代码
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
但是变量 f 的值是“F 51”而不是“F51”。
如何解决这个问题?ps 这是我在 vba 上的第一个代码。