20230226 1148
REF
[1] "https://exceloffthegrid.com/vba-code-loop-files-folder-sub-folders/"
Sub LoopAllFilesInAFolder()
'Loop through all files in a folder
Dim fileName As Variant
zpath = ThisWorkbook.Path & "\"
fileName = Dir(zpath)
'fileName = Dir(Sheets("prmt").[b1])
i = 2
[a1] = "n"
[b1] = "file name"
While fileName <> ""
Cells(i, 1) = i - 1
Cells(i, 2) = fileName
i = i + 1
fileName = Dir
Wend
End Sub
'[PA] 업무자동화 > [XL]Excel & VBA' 카테고리의 다른 글
XL 셀에 오류표시 없애기 (0) | 2023.04.19 |
---|---|
XL 배열에서 0보다 큰수가 몇번째 있는지 알아내기 (0) | 2023.04.13 |
VBA 옵션단추 option button, radio button (0) | 2022.12.23 |
XL LAMBDA function 람다 함수 (0) | 2022.05.13 |
XL 탭 효과 tab effect (0) | 2022.05.13 |