cancel
Showing results for 
Search instead for 
Did you mean: 

Insert Attachments into Excel file

HamidSabaro1
Level 2
Hi Is there anyway to inset attachments to excel? My current issue is at the moment to upload a .htm file as a attachment in to the excel file.
2 REPLIES 2

John__Carter
Staff
Staff
The Excel VBO is really just a wrapper for the Excel VBA API, so technically anything that can be done via an Excel macro (VBA) can be done by a BP code stage (.Net). As you can imagine, the scope of the Excel API is vast, and so the BP object only covers the essential part of it. The functionality you describe does not exist in the object but it could be added with some programming ability. I find the easiest way is to first record a macro and examine the resulting macro code. This code can't be pasted into BP, but it is useful in guiding the programmer into creating the equivalent .Net code.

HamidSabaro1
Level 2
Thanks John Carter!