有没有办法在单元格中存储额外的信息

时间:2018-07-18 08:53:45

标签: excel-vba

我正在开发一个依赖互联网的功能。如果没有互联网,我希望它显示最后一个值(通常是文本,例如下面的数字)。此外,这应该在刚打开的电子表格中起作用,因此不要将额外信息保留在电子表格之外。

现在我正在使用评论

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。还有其他东西吗?

0 个答案:

没有答案