So hopefully that topic isn't too confusing, but basically using VBA within Outlook I am parsing some emails I receive and then appending the results into a CSV File.
I am appending the results using the:
Open X As Append As 1
Print #1 yada yada
Close
I know what the VBA code within Excel would be to copy and transpose the range as it is pretty straightforward, but can this be done within my Outlook VBA Macro? My goal would be to have this done after the data is appended to the CSV file.
I know to include a reference to Excel Objects in my references, but I'm not sure exactly how to put together the Excel code that will open the CSV file I have just appended to, transpose it, then save it as another CSV file. Thanks for any help!