Reputation: 676
I have a .NET Core app running in AWS Lambda. I now have a requirement to read and do some calculations on an Excel file. I've found two libraries for Excel parsing in .NET Core, but each doesn't seem to be able to run in lambda for different reasons:
Do I have any options besides:
Thanks.
Upvotes: 2
Views: 2310
Reputation: 19758
If you are looking at an alternative option, you can use Google Sheets and API instead of using Excel.
The Google Sheets API can be invoked from Lamda and if there are complex reads and writes, you can also write an App Script in Google Sheet and invoke it also from Lambda.
We were in a similar situation and imported the Excel to Google Sheets and was able to make the calculation work.
Upvotes: 3