我在MS單詞中有一個3 X 3(稱爲tableA)表格。第(2,2)個單元格是一個拆分單元格(拆分爲2X2表格)。 如何循環遍歷表A中的所有單元格。如何在單詞表中分割單元格中的所有單元格循環
Dim strCellText As String
Dim uResp As String
Dim Row As Integer
Dim Col As Integer
Dim itable As Table
For Each itable In ThisDocument.Tables
uResp = ""
For Row = 1 To itable.Rows.Count
For Col = 1 To itable.Columns.Count
strCellText = itable.Cell(Row, Col).Range.Text
uResp = uResp & Trim(strCellText)
Next
Next
MsgBox uResp
Next
這個節目給編譯錯誤:
Run time error 5914
The requested member of the collection does not exist
我如何可以遍歷雖然已經分裂細胞的表的單元格。
哪條線你有這個錯誤?一般來說,你的代碼是正確的,這意味着它會遍歷所有單元格。所以,你的問題在別的地方,因爲我沒有任何錯誤處理你的代碼。 –
@KazJaw你有沒有試過用拆分單元格的表格。 – Vinod
對不起,我錯過了這一點,所以我再次檢查... –