I have the following code snippet from some Outlook VBA code I am creating to automatically export and file a bunch of excel attachments we are getting each day:
Atmt.SaveAsFile FullFileName_And_Path
Atmt stands for attachment and represents the current attachment that VBA is looping through. FullFileName_And_Path and is a string which contains the filename and path that it needs to save it as.
The problem I am having is that some of these attachments are in the old .xls format. Now, when a human does this, they open the file and simply save it as a .xlsx file... Is there command I can use to make VBA simply convert the file to xlsx?