Is there a way to convert Excel or PowerPoint Files with SharePoint 2010 Word Automation Services?
Currently we can convert word files using something like this
ConversionJob pdfJob = new ConversionJob("Word Automation Services");
pdfJob.Name = "Mortgage Report";
pdfJob.UserToken = myWebsite.CurrentUser.UserToken;
pdfJob.AddFile(outputWordFilename, outputWordFilename.Replace(".docx", ".pdf"));
pdfJob.Start();
Or its a way to convert Excel or PowerPoint to Word, and the use the same code?