Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub ListFolders()
Dim fso, fldr, i As Long
i = 0
Set fso = CreateObject("Scripting.FileSystemObject")
Set fldr = fso.GetFolder("C:\Household")
For Each Folder In fldr.SubFolders
Range("A1").Offset(i, 0).Value = Folder.Name
i = i + 1
Next
Set fso = Nothing
Set fldr = Nothing
End Sub