Hello,
excel 2010 works with implicit extensions (.xlsx)
When I run a macro on my PC,
the following
<<
fName = Dir(wsDir & wsFile & "*")
Do While Len(fName)
>>
gives back the required files with implicit extension .xlsx.
Unfortunately when a user runs the macro it does not find the required files.
When I change it to
<<
fName = Dir(wsDir & wsFile & ".*")
Do While Len(fName)
>>
it does work on the PC of the user, but not on my PC.
Is there a general setting which provokes this ?
Bookmarks