Start Outlook from within a spreadsheet

hiker8117

New Member
Joined
Mar 26, 2018
Messages
38
I looked on the web however I could not find any answers.

Is it possible to start Outlook with a hyperlink within an Excel text box?

Thank you

Gene
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
.
Place a textbox and a command button on your sheet.

Assign the command button to this macro :

Code:
Option Explicit


Sub gotext()
    Shell TextBox1.Text
End Sub


With the above, you will need to enter into the textbox "Outlook.exe"
 
Last edited:
Upvote 0
I set up the Command Button and assigned the macro.

Option Explicit

Sub gotext()
Shell TextBox1.Text
End Sub

However not sure how to go about the entry "Outlook.exe".

When I insert a text box and right click it gives me the ability to add a hyperlink or assign a macro.

Not sure how the "Outlook.exe comes into play with the text box.

Appreciate your help

Thank you

Gene


clip_image003.png

<tbody>
[TD="width: 64"]

<colgroup><col style="width:48pt" width="64" span="5"> </colgroup><tbody>
[TD="width: 64"][/TD]
[TD="width: 64"][/TD]
[TD="width: 64"][/TD]
[TD="width: 64"][/TD]
[TD="width: 64"][/TD]

</tbody>
[/TD]

</tbody>
 
Upvote 0
.
Dont right click the text box. Type into the text box : Outlook.exe

Then click the button.
 
Upvote 0
Ok..please be patient.

I have the command button assigned to the code.

I inserted a text box in the spreadsheet from the ribbon Insert Text and a drop down gives me a number of choices: Text Box, Header/Footer,Word Art etc etc.

I typed in the text box Outlook.exe which seems to more of a text label than a command.

I hit the command button and got an error: Compile error variable not defined. Am I using the right type of text box.

Thank you

Gene
 
Upvote 0
.
Ok ... I am embarrassed, ashamed and you are going to be very frustrated with me.
If you can accept my apology, please do so. :rolleyes:

I gave you the wrong code.

Here is the corrected macro :

Code:
Option Explicit


Sub gotext()
    Shell Sheets("Sheet1").TextBox1.Text
End Sub

You can download the sample workbook, that works !, from here : https://www.amazon.com/clouddrive/share/zvhdWyI8fu5yi0N8oze1Bx32B2cyVRpmXRdpJyPFcXk

Yes, I believe you most likely inserted the correct textbox but because of my stupid error, of course it wouldn't work.


From the DEVELOPER TAB / INSERT / ACTIVE X CONTROLS .. you would select TEXTBOX. Then of course you would select a COMMAND BUTTON from FORM CONTROLS, attaching that button to the macro
located in a Routine Module.

HTH
 
Upvote 0
Apology accepted but I really appreciate your time and efforts.

I will give it a try.

Regards

Gene


.
Ok ... I am embarrassed, ashamed and you are going to be very frustrated with me.
If you can accept my apology, please do so. :rolleyes:

I gave you the wrong code.

Here is the corrected macro :

Code:
Option Explicit


Sub gotext()
    Shell Sheets("Sheet1").TextBox1.Text
End Sub

You can download the sample workbook, that works !, from here : https://www.amazon.com/clouddrive/share/zvhdWyI8fu5yi0N8oze1Bx32B2cyVRpmXRdpJyPFcXk

Yes, I believe you most likely inserted the correct textbox but because of my stupid error, of course it wouldn't work.


From the DEVELOPER TAB / INSERT / ACTIVE X CONTROLS .. you would select TEXTBOX. Then of course you would select a COMMAND BUTTON from FORM CONTROLS, attaching that button to the macro
located in a Routine Module.

HTH
 
Upvote 0
Let me know if it works for you.
 
Upvote 0

Forum statistics

Threads
1,223,227
Messages
6,170,849
Members
452,361
Latest member
d3ad3y3

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top