nnsea 发表于 2020-11-28 15:10:22

VBA if 举例

Sub A()
If Sheet1.Cells(1, 1) = 7 Then
Sheet1.Cells(1, 2) = "对"
Else
Sheet1.Cells(1, 2) = "错"
End If


页: [1]
查看完整版本: VBA if 举例