Using same variable in 2 Sub Routines

adambc

Active Member
Joined
Jan 13, 2020
Messages
380
Office Version
  1. 2019
  2. 2016
Platform
  1. Windows
I know the answer to this, but for the life of me I can’t think what it is!

I have a UserForm Initialise Sub which adds a Sheet using …

ACell = ActiveCell.Value
CUser = Application.UserName
SName = ACell & CUser

Sheets.Add.Name = “SName”

… and then does “stuff” with the new Sheet …

I then have a CommandButton Sub to Close the UserForm, but on the way out I want to delete the Sheet created in the first Sub …

But how do I pick up SName from the first Sub to use …

Sheets(“SName”).Delete

???

Thanks …
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Declare SName as a Public variable, at the top of the userform module, outside any procedures:

VBA Code:
Public SName As String
 
Upvote 0
Solution

Forum statistics

Threads
1,216,114
Messages
6,128,910
Members
449,478
Latest member
Davenil

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