空白の値を選択したマクロを挿入しようとしていますが、新しいシート "mycount"を挿入するためにマクロをループするためにそのカウントを使用します。 2番目のループ部分はどうすればいいですか?ありがとうございますn回回数のVBAループ機能
'cnt blank cells in col U
Dim mycount As Long
mycount = Application.WorksheetFunction.CountBlank(Selection)
‘add sheets for number of mycount
Dim looper as integer
Looper=mycount
Do while looper <=mycount
Sheets.add after:=ActiveSheet
Loop
をhttp://stackoverflow.com/documentation/vba/1873/flow-control-構造体#t = 201608231550302751355)。 – Comintern