Passing Variables from One sub to Another

acombest

Board Regular
Joined
May 8, 2017
Messages
136
Hello I want to pass some variables from one sub to another and after doing some research I'm still unsure on how to achieve the outcome I want.

Code:
Private Sub CommandButton2_Click()
If isLoggedIn = False then
Get LogIn(Username)
End if
MsgBox(Username)
End sub

Code:
Private Sub LogIn()
Username = Users.Cells(2, 1).Value
return Username

If I can clarify anything please let me know. Thanks for theHelp
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Code:
Private Sub CommandButton2_Click() 
Dim username As String
If isLoggedIn = False Then 
    username = LogIn
End If 
MsgBox username
End sub

Private Function LogIn() As String
Dim Users As Worksheet 
Set Users = [define your worksheet] 
LogIn = Users.Cells(2, 1).Value 
End Function

That work?

You'll need to actually define the worksheet you're referencing as Users, but the rest should work.
 
Upvote 0

Forum statistics

Threads
1,215,065
Messages
6,122,944
Members
449,095
Latest member
nmaske

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