Hi,
I am trying to create a utility that exports data from a 3rd party application into a text file and then launches Excel and opens an .xlsm file that serves as a report template. I have VBA code behind the .xlsm file that opens the text file and reads data from it, placing each piece of data in its designated location in the template. It is working just how I'd like it to, except for the following:
One of the fields I am exporting is entered in the 3rd party application by users as shown below. The application has no facility for entering numbered lists, so this is entered as straight text...

... even though the user enters this a straight text, the application seems to automatically add HTML tags to it. When I export the data from this field, I get the following....

... When I copy this into a cell in Excel, Excel does not interpret the HTML tags, so the text is shown exactly as is (with HMTL tags visible).
Can anyone here tell me if there is a way I can make Excel interpret these HTML tags so that the data will be displayed in Excel just as it is in the application? Or will I have to write VBA code to remove these HTML tags and add conventional carriage returns and linefeeds (vbCrLF)
Any suggestions will be greatly appreciated.
Thanks in advance,
Paul