KeithGargett
New Member
- Joined
- Sep 2, 2019
- Messages
- 6
Hi,
I'm trying to ask VBA to prepare a new email in outlook using the following code:
My issue is the network location where my active workbook is then saved has spaces in, and therefore the hyperlink to ActiveWorkbook.Path generated does not complete the link.
The macro also creates the save location (and stores in worksheet) so it is not known / cant be hard coded.
Thank you in advance for your help.
I'm trying to ask VBA to prepare a new email in outlook using the following code:
Code:
strbody = "<font size=""3"" face=""Calibri"">" & _
"Colleagues,<br><br>" & _
"New Request Saved in the following location: <br><B>" & _
ActiveWorkbook.Path & "</B>\<br>" & _
"Click on this link to open the request: " & _
"<A HREF=""file://" & ActiveWorkbook.FullName & _
""">Request</A>" & _
"<br><br>Regards, " & UserFullName
The macro also creates the save location (and stores in worksheet) so it is not known / cant be hard coded.
Thank you in advance for your help.
Last edited by a moderator: