【发布时间】:2014-03-05 17:50:49
【问题描述】:
为什么这不起作用?基本上,我在单个单元格中有一个列表,我想拆分以“sec”结尾的字符串,以及不通过将它们复制到不同列中的字符串。
Sub test_if()
For i = 1 To 300
Cells(i, 2).Select
If Right(Cells(i, 2), 3) = "SEC" Then
ActiveCell.Select
Selection.Copy
Cells(i, 3).Select
ActiveSheet.Paste
End If
If Right(Cells(i, 2), 3) <> "SEC" Then
ActiveCell.Select
Selection.Copy
'Cells(i, 4).Select
ActiveCell.Offset(i - 1, 2).Select
ActiveSheet.Paste
End If
Next i
Cells(1, 1).Select
End Sub
【问题讨论】: