Excel VBA でフォルダを作成する
MkDir
引数にパスを渡すことでフォルダを作成できる
Usage
Sub sample_mkdir()
Dim testPath As String
testPath = ThisWorkbook.Path & "\TEST"
MkDir testPath
End Sub
引数にパスを渡すことでフォルダを作成できる
Sub sample_mkdir()
Dim testPath As String
testPath = ThisWorkbook.Path & "\TEST"
MkDir testPath
End Sub