I have the following code which, when called, will display the folder contents as a list on a dashboard in Excel:
Sub DisplayInProgressBeth()
Dim objFSO As Object
Dim objFolder As Object
Dim objFile As Object
Dim i As Integer
Range("S29:S38").Select
Selection.ClearContents
'Create an...