How do you save a message in one place then use it in another Sub

aragon123321

New Member
Joined
Jul 6, 2015
Messages
26
I was just wondering if I could make a message here in my first Sub and then Call it in another Sub. I don't know if this is even possible.
Thank you if you can help in any way.

Here is the code,

Sub Procedure()
Dim Cell, result As String, I As Long
For I = 3 To 17
If Cells(I, 14).Value > 6
Then Call SendMessage
x = " saved message" :eek:
Exit Sub
End If
End Sub
--------------------------------------------
sub Sendmessage()

strbody = load message x
 

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
Something like this maybe...

Code:
Sub Procedure()
Dim Cell, result As String, I As Long
Dim strbody As String
For I = 3 To 17
    If Cells(I, 14).Value > 6 Then
        strbody = " saved message"
        Call Sendmessage(strbody)
        Exit Sub
    End If
Next I
End Sub



Sub Sendmessage(strbody)
'your code here
End Sub
 
Upvote 0

Forum statistics

Threads
1,216,175
Messages
6,129,310
Members
449,499
Latest member
HockeyBoi

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