我正在开发一个依赖互联网的功能。如果没有互联网,我希望它显示最后一个值(通常是文本,例如下面的数字)。此外,这应该在刚打开的电子表格中起作用,因此不要将额外信息保留在电子表格之外。
现在我正在使用评论
Public Function TestCase(Eingabe As Integer) As Integer
Dim Zelle As Range
Set Zelle = Application.Caller
If StopInternet = True Then
Wert = CInt(Zelle.Comment.Text)
TestCase = Wert
Else
Wert = Eingabe + 1
Zelle.Comment.Delete
Zelle.AddComment CStr(Wert)
Zelle.Comment.Visible = False
TestCase = Wert
End If
End Function
有更好的方法吗?我知道的唯一其他cell.property是.hyperlinks。还有其他东西吗?