gpt4 book ai didi

Excel VBA 将特定单元格复制并粘贴到另一个工作表

转载 作者:行者123 更新时间:2023-12-04 21:53:19 27 4
gpt4 key购买 nike

我想看看一个特定的单元格是否是我期望的值,如果是,我想将它粘贴到另一张纸上。但是我的代码不知何故出错了。
这是我的代码:

Private Sub CommandButton1_Click()

Sheets("Sheet3").Select
If Cells(2,6).Value == 25 Then
Cells(2, 6).Select
Selection.Copy

Sheets("Sheet1").Select
Cells(4, 1).Paste
End If

End Sub

最佳答案

Private Sub CommandButton1_Click()
With Sheets("Sheet3")
If .Cells(2, 6).Value = 25 Then
.Cells(2, 6).Copy Sheets("Sheet1").Cells(4, 1)
End If
End With
End Sub

关于Excel VBA 将特定单元格复制并粘贴到另一个工作表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50199727/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com