I currently have this code that finds the *csv files in a folder how can I change it where it can find all the *csv files in the sub folders.
folderPath = InputBox("Enter Folder Name where CSV files are.")
'MsgBox folderPath
If Right(folderPath, 1) <> "\" Then folderPath = folderPath + "\"
fileName = Dir(folderPath & "*.csv")
Do While fileName <> ""
Application.ScreenUpdating = False
Set wB = Workbooks.Open(folderPath & fileName)
Basically, look for all *.csv files in the given location.