我无法完成这个看似简单的过程...我想通过单击名为“1”的工作表中的一个单元格(C47)为名为“Hardware”的工作表中的一个单元格(名为“ClInfo”)赋予一个值(“Hello”)。
我尝试了这个:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Selection.Count = 1 Then
If Not Intersect(Target, Range("C47")) Is Nothing Then
.range("ClInfo").value = "hello"
End If
End If
我该怎么做才能让它工作?谢谢你的帮助!