我想写一个对我来说看起来像循环的脚本。我的数据在 A 列下。
- 我想把脚本说在 B 列中。例如 B2 = A2
- 在 B3 下输入“xxxx”,在 B4 下输入“yyyy”,然后重复步骤 1 和 2,直到数据结束。
到目前为止,我有以下内容。我怎样才能循环它,因为我必须再输入数百次....谢谢。
Sub DATA()
Dim DL As Long
Dim Script1 As String
Dim Script2 As String
DL = Range("A" & Rows.Count).End(xlUp).Row
Script1 = "KEY END"
Script2 = "KEY WAIT"
Range("B2").Value = Range("A2")
Range("B3").Value = Script1
Range("B4").Value = Script2
Range("B5").Value = Range("A3")
Range("B6").Value = Script1
Range("B7").Value = Script2
Range("B8").Value = Range("A4")
Range("B9").Value = Script1
Range("B10").Value = Script2
End Sub