Convert Excel to Word using Aspose.Cells Cloud API

Hi,

Can Aspose convert a MS Excel document into a MS Word ?
We are using the Aspose Cloud services to convert Excel to PDF.
If it’s possible, please provide a sample code of how to do that with the Aspose Cloud.

Thank you,
Tuan

Hi Tuan,

MS Excel to MS Word direct conversion is not supported but you can convert MS Excel to PDF and then use Aspose.Pdf for Cloud API to convert PDF to MS Word as you can see at https://docs.aspose.cloud/pdf/convert-pdf-document-to-doc-format/.

Please feel free to contact us in case you have further comments or questions.

Best Regards,

@Tuan_Dao

In addition to the above reply, you can convert PDF to Word document using Aspose.Words Cloud as well. Please find the sample cURL example for reference.

# First get Access Token
# Get Customer Key and Customer ID from https://dashboard.aspose.cloud/
curl -X POST "https://api.aspose.cloud/connect/token" 
-d "grant_type=client_credentials&client_id=xxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx&client_secret=xxxxxxxxxxxxxxxxxx" 
-H "Content-Type: application/x-www-form-urlencoded" 
-H "Accept: application/json"

# cURL example to convert PDF to MS Word Document
curl -v "https://api.aspose.cloud/v4.0/words/convert?format=docx" \
-X PUT \
-F document=@TableDocument.pdf \
-H "Content-Type: multipart/form-data" \
-H "Accept: multipart/form-data" \
-H "Authorization: Bearer <jwt token>" \
-o TableDocument.docx