- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在尝试使用 VBA 宏将文本从 Excel 文档复制到 Word 文档 - 但是它在看似随机的点上一直失败,并且会吐出两种不同的错误消息之一。关于它会在哪里失败或它会给我什么错误消息似乎没有押韵或理由。
首先,这是我正在使用的示例 Excel 电子表格:
这是运行宏时 Word 文档的样子:
有时它会失败并显示以下错误消息 - 但是当您尝试调试它时 - 它实际上并没有显示发生故障的行:
在其他时候 - 它会失败并显示以下错误消息。当它失败并显示此消息时 - 您可以对其进行调试,它显示它在四个 之一上失败.粘贴行:
最后,这是我的 VBA 宏:
Sub CopyFromExcelToWordUsingCopyPaste()
Dim wrdApp As Word.Application
Dim wrdDoc As Word.Document
Dim myIndex As Integer
Dim questionNumber As Integer
Dim lastRow As Long
lastRow = Cells(Rows.Count, 1).End(xlUp).Row ' this figures out the last used row by counting backwards (up) from the bottom until it finds some data
questionNumber = 1
' create a new word application and word document
On Error Resume Next
Set wrdApp = GetObject(, "Word.Application")
On Error GoTo 0
If wrdApp Is Nothing Then
Set wrdApp = CreateObject("Word.Application")
End If
wrdApp.Visible = True
Set wrdDoc = wrdApp.Documents.Add ' create a new document
' insert the question and response data
For myIndex = 2 To lastRow
With wrdDoc.ActiveWindow.Selection
' insert the question data
.TypeText questionNumber & ". "
Range("A" & myIndex).Copy
.Paste
' insert response A, B and C data
.TypeText "a) "
Range("B" & myIndex).Copy
.Paste
.TypeText "b) "
Range("C" & myIndex).Copy
.Paste
.TypeText "c) "
Range("D" & myIndex).Copy
.Paste
' insert a new paragraph and increment to the next question
.TypeParagraph
questionNumber = questionNumber + 1
End With
Next
' Save the word document into the WordExport Folder
wrdDoc.SaveAs "c:\Data\testDocument.docx", FileFormat:=12 'wdFormatXMLDocument
wrdDoc.Close ' close the document
Set wrdDoc = Nothing
Set wrdApp = Nothing
End Sub
如果有人可以就为什么这一直失败提供一些帮助 - 将不胜感激。
最佳答案
这不能回答您的问题,但它是一种将数据从 Excel 传输到 Word 而不是复制和粘贴的替代方法。
...
With wrdDoc.Content
' insert the question data
.InsertAfter questionNumber & ". " & Range("A" & myIndex) & vbCr
' insert response A, B and C data
.InsertAfter "a) " & Range("B" & myIndex) & vbCr
.InsertAfter "b) " & Range("C" & myIndex) & vbCr
.InsertAfter "c) " & Range("D" & myIndex) & vbCr
' insert a new paragraph and increment to the next question
.InsertAfter vbCr
questionNumber = questionNumber + 1
End With
...
更新:同样,这并不能回答您的问题,但是您可以将整个范围复制到一个中,然后在 Word 中操作数据。
...
' copy the question and response data
Range("A2:D" & lastRow).Copy
' paste to Word as a table
wrdDoc.Content.Paste
With wrdDoc.Tables(1)
' align table text left
.Range.ParagraphFormat.Alignment = wdAlignParagraphLeft
' loop through table rows
For questionNumber = 1 To .Rows.Count
With .Rows(questionNumber)
' insert question number
.Cells(1).Range.InsertBefore questionNumber & ". "
' insert response letters
.Cells(2).Range.InsertBefore "a) "
.Cells(3).Range.InsertBefore "b) "
.Cells(4).Range.InsertBefore "c) "
' insert new line at end of row
.Cells(4).Range.InsertAfter vbCr
' ensure no page break occurs between question/response
.Range.ParagraphFormat.KeepWithNext = True
.Cells(4).Range.ParagraphFormat.KeepWithNext = False
End With
Next
' split table into 1 column
.Range.Cells.Split NumColumns:=1
' convert table to text
.ConvertToText Separator:=wdSeparateByParagraphs
End With
...
关于excel - 将文本从excel复制到word一直失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66594674/
我有一个在 Android 市场上相当流行的应用程序,它允许数以万计的用户按下一个按钮并向它发出语音命令。然后我就可以做很多不同的事情,比如给他们提供当前的天气预报等等...... 无论如何,我的应用
令人惊讶的是,标题基本上解释了它。我们有一个我们的客户制作的页面,我们正在重新创建该页面。 页面高度会一直增加,直到(我假设是这样)浏览器达到它的极限。我已经尝试过 Firebug 和 W3 验证器,
我是 react-native 的新手,试图创建我自己的组件,但它一直显示一个空屏幕。 这是我的组件代码 class BoxComponent extends Component { cons
我正在为我的 PHP 元素创建一个非常简单的博客,但遇到了一个简单的问题。我无法让我的页眉图像一直 float 。我有一个横幅,左边有一些文字,我有一个 1px 的切片,在可以选择的任何分辨率的宽度上
为什么我可以在另一个 Controller 的 View 中访问一个 Controller 的辅助方法?有没有办法在不破解/修补 Rails 的情况下禁用它? 最佳答案 @George Schreib
我正在使用带有最新 ADT 插件的 Eclipse Kepler SP2。每隔一分钟 Eclipse 就会说“为 Android 4.4.2 加载数据”并阻止我想做的一切。我在不同的文件夹中有几个 E
我是一名优秀的程序员,十分优秀!