Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在构建一个宏来将数据从自定义 Outlook 表单导出到 Excel 工作簿。数据将以字符串格式从 Outlook 表单中的用户定义字段中提取。然后将字符串数据输入到 Excel 单元格的值中。字符串可能包含大量字符。
我知道每个 excel 单元格可以容纳 32,767 个字符。如果我尝试在 Excel 单元格中输入超过 32,767 个字符的字符串,会发生什么情况?多余的字符会怎样?
我意识到字符没有出现,但是这些丢失的字符可以通过某种方式恢复吗?
它们只是丢失了,没有办法恢复它们。如果你喜欢,你可以测试一下:
Sub test() Dim i As Long Dim text As String For i = 1 To 32767 text = text & "a" Next text = text & "end" Range("A1").Value = text '"end" will be lost End Sub