Macro for sending email via Lotus Notes

nova110488

New Member
Joined
Aug 30, 2011
Messages
4
I am looking to set up a macro in excel in order to send a selected range in an email via Lotus Notes 8.5. If anyone has an idea how to set up this it would be greatly appreciated. This is being set up as a way to record problems across a large department while sending each entry through to IT in order to get it resolved.

I intend on sending the range "A2:G2" in worksheet "record" as a copied range through to Lotus Notes 8.5 in a new email, filling in to/cc/subject lines and pasting the range from Excel in body of email. Send email and then return to excel to continue the macro:

Code:
Sub Copy()
'
' Copy Macro
'
'
    Range("B2:G2").Select
    Selection.Copy
    Sheets("Log").Select
    Range("B1").End(xlDown).Offset(1, 0).Select
    ActiveSheet.Paste
    Sheets("Data").Select
    Range("F2").Select
    Selection.Copy
    Sheets("Log").Select
    Range("A1").End(xlDown).Offset(1, 0).Select
    ActiveSheet.Paste
    Sheets("Record").Select
    Range("B2:G2").Select
    Selection.Value = Blank
    Range("B2").Select
End Sub
 

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.

Forum statistics

Threads
1,224,565
Messages
6,179,549
Members
452,927
Latest member
rows and columns

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