I am trying to create code that will essentially "crawl" from subfolder to subfolder, and find and insert a designated picture.
I've got this bit of working code, which inserts the pic:
Set picture = ActiveSheet.Pictures.Insert(path & "\" & picname & ".jpg")
picture.Select
If I were to put this in a loop, what methods would I need? Reading up on this, I have found lots of related topics, but all are very specific cases with long-winded, extraneous code, making it very hard for a beginner like me to isolate the parts relevant to getting from folder to folder.
I appreciate your time, and thanks in advance for the help.