作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 Excel VBA 的新手,遇到了障碍。运行此程序时我没有收到任何错误,我什至不确定从哪里开始......
我想搜索 C 列,如果有非空白将该值复制到同一工作表的列(D、G、I)。我将在第 4 行开始搜索。
我试过单步执行代码,我很确定我的错误是 currVal = ws.Cells(i, "c")。当我逐步完成时,Excel 表上没有任何 react (没有复制或粘贴单元格)。
非常感谢任何帮助!我整个上午都在看这个。
Sub Copy()
Dim lastC As Integer
Dim i As Integer
Dim j As Integer
Dim currVal As String
Dim ws As Worksheet
Set ws = ActiveSheet
lastC = ws.Cells(Rows.Count, 1).End(xlUp).Row
For i = 4 To lastC
currVal = ws.Cells(i, "c")
If ws.Cells(i, 1).Value <> "" Then
currVal = ws.Cells(i, "D")
currVal = ws.Cells(i, "G")
currVal = ws.Cells(i, "I")
End If
Next i
End Sub
最佳答案
添加到评论中,这就是我编写特定代码的方式,也许它会有所帮助:
Sub Copy()
Dim ws As Worksheet: Set ws = ActiveSheet
Dim lastC As Long: lastC = ws.Cells(ws.Rows.Count, "A").End(xlUp).Row
Dim R As Long 'I like to use R (rows) & C (cols), just because makes it more readable (for me)
For R = 4 To lastC
With ws
If .Cells(R, "A").Value <> "" Then
.Cells(R, "D") = .Cells(R, "C").Value
.Cells(R, "G") = .Cells(R, "C").Value
.Cells(R, "I") = .Cells(R, "C").Value
End If
End With
Next R
End Sub
.Cells
我更喜欢数字而不是字母引用,但在这种情况下使用字母是可以理解的。只是为了最佳实践 - 可读性,不应该混合它们。
关于Excel VBA遍历列以将非空白复制并粘贴到其他3列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56365691/
我是一名优秀的程序员,十分优秀!