I have table stored in redshift.I want to share data with my colleagues in excel format for s3 bucket. I know how to share in csv format but not excel format. Please help.
3 Answers
This can be done via a Lambda function that you program. You can use the Redshift data client to read the data from a Redshift table. In your Lambda function, you can write the data to an Excel file using an Excel API such as Apache POI. Then use the Amazon S3 API to write the Excel file to an Amazon S3 bucket.