You need to sign in to do that
Don't have an account?

Importing excel file and create an Sobject
Hi, I was wondering if I attach an excel file to an email, could i use an email service to run through the excel file and create the objects. I looked at the excel connector but it does not work with the non profit starter pack.
Thanks for any help you can give.
Hi,
You can parse the excel as an attachment to the email using APEX code by storing the content (body) in a blob.
But as there is no read/write functionality available in APEX, your contents cannot exceed 10,000 chars, which is the max size of a blob!! So, this constraint is there in this case.
But you can do is, you can create an XML from the excel and attach that and then you can write an XML parser in APEX to create the objects without any limitation.
Cool_D