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

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
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,531
Messages
6,179,379
Members
452,907
Latest member
Roland Deschain

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