I have an excel file that has a list of exe files and I want to create a macro button to run those exe files. But for some reason it is not working for me. This is the code I used:
If Dir(ProgName(k)) <> "" Then 'check if executable file exists
RetVal = Shell(ProgName(k)...