Hi Sarah,
Thanks for your inquiry.
First of all, please note that Microsoft Word and Microsoft Excel documents are completely different file formats; so, some features that are available in Microsoft Word are not available in Microsoft Excel and vice versa and it is hard to convert from Word to Excel and from Excel to Word with 100% fidelity.
Unfortunately, there is no direct way to convert Excel document to Word. However, it is possible using Aspose.Words and Aspose.Cells. Please use the attached utility to convert Excel document to Word document. Hope this helps you.
ConverterXls2Doc converterXls2Doc = new ConverterXls2Doc(MyDir + "Aspose.Words.xlsx", true, "Arial", "10");
converterXls2Doc.convert(false);
Document convertedWordDoc = converterXls2Doc.getDocument();
convertedWordDoc.save(MyDir + "Out.docx");