+ Reply to Thread
Results 1 to 5 of 5

Email icon in spreadsheet as per email icon in Quick Access Toolbar

  1. #1
    Registered User
    Join Date
    04-22-2010
    Location
    Johannesburg SA
    MS-Off Ver
    Excel 2003
    Posts
    5

    Email icon in spreadsheet as per email icon in Quick Access Toolbar

    Hi everyone,

    I need to send out an order form (spreadsheet) to 100's of people that need to complete the form and email back to me as an attachment. If I was completing the order form myself I would use the "email" icon that I have pinned to my Quick Access Toolbar (QAT). However, most of the recipients don't even know the Toolbar exists.

    Is there a way I can insert an icon / hyperlink in the spreadsheet that does the same thing as the QAT icon. I can insert text to say "click here to email your order" (or similar).

    I need to keep it in an excel format and an icon is so much better that asking them to save to their hard-drive and attach to an email, etc.

    Any ideas ??? The QAT icon is exactly what is needed but I need to provide a spreadsheet that works for folk who haven't got the icon.

    Thanks

    Mike_100

  2. #2
    Registered User
    Join Date
    08-19-2014
    Location
    Pittsburgh, Pennsylvania
    MS-Off Ver
    2010
    Posts
    45

    Re: Email icon in spreadsheet as per email icon in Quick Access Toolbar

    I think you're trying to do:
    Please Login or Register  to view this content.
    Create a module with that code in it, and make a little icon object that looks however you want.
    Right click > Assign Macro > select the module.

  3. #3
    Registered User
    Join Date
    04-22-2010
    Location
    Johannesburg SA
    MS-Off Ver
    Excel 2003
    Posts
    5

    Re: Email icon in spreadsheet as per email icon in Quick Access Toolbar

    Hi Jamie
    Thanks very much - so far so good. How do I pre-address the email in the macro (to save these folk typing in the wrong address). Similarly, I should be able to add a "SUBJECT" line ... what would be the correct code for that ?
    Many thanks so far.
    Mike

  4. #4
    Registered User
    Join Date
    08-19-2014
    Location
    Pittsburgh, Pennsylvania
    MS-Off Ver
    2010
    Posts
    45

    Re: Email icon in spreadsheet as per email icon in Quick Access Toolbar

    Using a completely different method, and assuming you're using MS Outlook:
    Please Login or Register  to view this content.

  5. #5
    Registered User
    Join Date
    04-22-2010
    Location
    Johannesburg SA
    MS-Off Ver
    Excel 2003
    Posts
    5

    Re: Email icon in spreadsheet as per email icon in Quick Access Toolbar

    Hi Jamie

    The module below (from your reply) does nothing !! Have inserted as a Macro in the spreadsheet but when I run the Macro (or F5 from Visual Basic) nothing happens.

    Mike
    Sub MailWorkbook()
    Dim OutApp As Object
    Dim OutMail As Object

    Set OutApp = CreateObject("Outlook.Application")
    Set OutMail = OutApp.CreateItem(0)

    On Error Resume Next

    With OutMail
    .to = "[email protected]"
    .CC = ""
    .BCC = ""
    .Subject = "Our Order"
    .Body = ""

    .Attachments.Add ActiveWorkbook.FullName


    End With
    On Error GoTo 0

    Set OutMail = Nothing
    Set OutApp = Nothing

    End Sub

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Changing Excel Icon so that it can be E-mailed with selected icon
    By mssbrgmn in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 05-02-2013, 12:09 PM
  2. Change default color of an icon on Quick Access bar
    By batman in forum Excel General
    Replies: 0
    Last Post: 09-11-2012, 04:17 PM
  3. Excel 2007 : Icon in Quick Access tool bar
    By jazbath in forum Excel General
    Replies: 3
    Last Post: 09-30-2008, 03:58 AM
  4. [SOLVED] Add icon to toolbar
    By [email protected] in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 07-31-2006, 09:18 PM
  5. Email Icon on excel 200 toolbar
    By a vecin in forum Excel General
    Replies: 1
    Last Post: 04-27-2006, 02:35 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1