-7

我已经搜索谷歌一段时间了,我似乎无法找到我的答案。

我有一个显示“服务中”的单元格,一旦您单击它,使用 VBA,我希望它更改为“未服务中”,如果您再次单击它,它将返回到“服务中”。你会怎么做呢?

谢谢你的时间:D

4

1 回答 1

4

这会起作用:

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    If Target.Value = "In service" Then
        Target = "Out of service"
    ElseIf Target.Value = "Out of service" Then
        Target = "In service"
    End If
End Sub
于 2013-06-14T21:26:01.793 回答