今すぐ質問しよう!
0 支持
投稿 インターネット

下記のVBAのコードの解析をお願いします。

sub concat()

call concatcells01

call concatcells02

end sub

---------------------------------------------------------------------

sub concatcells01()

dim i as integer

for i = 1 to range("c3")                                      

cells(i,5) = cells(i,1) & "','" & cells(i,2)    

next i

dim cellvalue as string

cellvalue = cells(range("C3"),5)

cells(range("C3"),5).value = left(cellvalue,len(cellvalue) - 2)

end sub

----------------------------------------------------------------------

sub concatcells02()

dim i as integer

dim result as string

for i = 1 to range("c3")

result= result & cells(i,5)

next i

cells(1,6) = "'" & result

end sub

回答内容

暴力・アダルト・誹謗中傷、その他運営側が不適切と判断した投稿は申し訳ございませんがこちらで削除させて頂きます。
表示名 (オプション):
メールアドレスは上記の通知にのみ使用されます。
UVSにようこそ。ここでは自由に質問や回答をしたり、雑談することができます!
...