下面是我的VBA代碼,VBA:增加行數我的代碼
For x = 0 To EleXML.ChildNodes.Length - 1
Range("A10" & x) = EleXML.ChildNodes.Item(x).getAttribute("aa")
Range("A10" & x) = EleXML.ChildNodes.Item(x).getAttribute("bb")
Range("A10" & x) = EleXML.ChildNodes.Item(x).getAttribute("cc")
Next x
我的單元將從「A10」開頭,怎麼可以在我的代碼中使用的「x」我的汽車增加了嗎?所以,下一個循環應該是「A11」。
在此先感謝。
如何:'範圍( 「A1」 &STR(X))= ...'? – Leri
我知道了...... Range(「A10」&x)= EleXML.ChildNodes.Item(x).getAttribute(「aa」) 範圍(「A」activerow&x)= EleXML.ChildNodes.Item(x) .getAttribute(「bb」) Range(「B」activerow&x)= EleXML.ChildNodes.Item(x).getAttribute(「cc」) – user2144293