3
我對VBA編碼真的很陌生。用逗號分隔的VBA拼接單元
問題我已經是這樣的:
B60,D60,F60,H60(等)的細胞具有這種格式的不同的值:X,Y,Z (X,y和z可以是數字0-10 ) 我想這個拼接因此它成爲:
B60 = x
B61 = y
B62 = z
D60 = x2
D61 = y2
D62 = z2
等
我發現這個代碼:
Dim objRegex
Dim Z
Dim Y
Dim lngRow As Long
Dim lngCnt As Long
Dim tempArr() As String
Dim strArr
Set objRegex = CreateObject("vbscript.regexp")
objRegex.Pattern = "^\s+(.+?)$"
'Define the range to be analysed
Z = Range([a1], Cells(Rows.Count, "b").End(xlUp)).Value2
ReDim Y(1 To 2, 1 To 1000)
For lngRow = 1 To UBound(Z, 1)
'Split each string by ","
tempArr = Split(Z(lngRow, 2), ",")
For Each strArr In tempArr
lngCnt = lngCnt + 1
'Add another 1000 records to resorted array every 1000 records
If lngCnt Mod 1000 = 0 Then ReDim Preserve Y(1 To 2, 1 To lngCnt + 1000)
Y(1, lngCnt) = Z(lngRow, 1)
Y(2, lngCnt) = objRegex.Replace(strArr, "$1")
Next
Next lngRow
'Dump the re-ordered range to columns C:D
[a1].Resize(lngCnt, 2).Value2 = Application.Transpose(Y)
但這並不適合我。我只需要第60行就可以做到這一點。我真的試過編輯這段代碼,但是我不明白其中的任何內容......有人可以幫我解決嗎?真的很感激。
給你的代碼添加一些註釋肯定會幫助OP(特別是如果他不能很好地理解他找到的代碼),那麼你的答案肯定會得到upvotes – JMax
好的建議。 – Stewbob
哇,我幾乎搞清楚了代碼的意思,而沒有你的意見。添加評論後,它完全清楚你做了什麼。我試過了,它完美的工作!唯一改變的是columncounter + 1到columncounter + 2,因爲我每次跳過1列(此列不是空的,但具有不同的數據)。非常感謝,絕對非常有幫助。 – bzoei