コマンドボタンを使用して、セル内の特定の値をカンマで10回以上印刷したい。誰かがこのためのマクロを書く方法を説明できますか?
コマンドボタンをクリックすると、値はアクティブセルに希望の時間を出力するはずです。データは非常に大きいため、手動で単一のセルに入力して入力するのは非常に困難です。
これをCommandbutton_Clickイベントハンドラーに入れます。
Dim strValueToPrint as String, strOutput as String
Dim intRepeatCount as Integer, i as Integer
strValueToPrint = "1" 'Change this to be the value that you want to repeat
for i = 1 to intRepeatCount
strOutput = strOutput & strValueToPrint & ","
Next
Activecell.Value = strOutput