Using a variable from one macro in another macro

JimM

Well-known Member
Joined
Nov 11, 2003
Messages
752
Hi guys

Is it possible to use a variable derived from one macro in another macro ?

eg If in macro1 below I put in 5 when asked, could I then get it to automatically run macro2 and give the answer of 6

Thanks

Jim

sub Macro1
myvar = inputbox ("enter a number bewteen 1 and 10")
end sub

sub macro2
myanswer = myvar +1
msgbox myanswer
end sub
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
One way

Code:
Sub Macro1()
myvar = InputBox("enter a number bewteen 1 and 10")
Call macro2(myvar)
End Sub

Sub macro2(myvar)
myanswer = myvar + 1
MsgBox myanswer
End Sub
 
Upvote 0

Forum statistics

Threads
1,224,502
Messages
6,179,126
Members
452,890
Latest member
Nikhil Ramesh

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