我正在使用vba for Excel,以便通过以下方式将数据保存到数组中:
Dim allPosts As Variant
allPosts = Range("A2:J5000")
之后,我正在更改allPosts
数组中的数据,然后我想将其粘贴回来:
Range("A2:J5000").Value = allPosts
我收到了错误:
运行时错误1004应用程序定义或对象定义
并且副本在特定单元格处停止,当我将此单元格中的字符串更改为更短时,问题就解决了。
感谢
答案 0 :(得分:12)
您可以使用第二个数组来存储太长的单元格长度,并单独迭代这些
来自this Microsoft Support Article excel-2003无法处理写回数组字符串超过 911 字符excel-2010在我的测试中正常工作)
以下代码:
<强>码强>
Sub KudosRickyPonting()
Dim allPosts As Variant
Dim allPosts2 As Variant
Dim vStrs As Variant
Dim lngRow As Long
Dim lngCol As Long
allPosts = Range("A2:J5000").Value2
ReDim allPosts2(1 To UBound(allPosts, 1), 1 To UBound(allPosts, 2))
For lngRow = 1 To UBound(allPosts, 1)
For lngCol = 1 To UBound(allPosts, 2)
If Len(allPosts(lngRow, lngCol)) < 912 Then
allPosts(lngRow, lngCol) = "Updated:" & allPosts(lngRow, lngCol)
Else
allPosts2(lngRow, lngCol) = "NEW PART " & allPosts(lngRow, lngCol)
'erase long value from first array
allPosts(lngRow, lngCol) = vbNullString
End If
Next
Next
Range("A2:J5000").Value = allPosts
For lngRow = 1 To UBound(allPosts2, 1)
For lngCol = 1 To UBound(allPosts2, 2)
If Len(allPosts2(lngRow, lngCol)) > 0 Then Range("A2").Offset(lngRow - 1, lngCol - 1).Value2 = allPosts2(lngRow, lngCol)
Next
Next
End Sub