A Button that selects a value in a data validation drop down list based on the current sheet name

jondavis1987

Active Member
Joined
Dec 31, 2015
Messages
443
Office Version
  1. 2019
Platform
  1. Windows
I have formulas all tied to a data validation drop list. The dropdown list contains some of the sheet names. On those sheets I'd like to have a button that would use the sheet name the button is on to select that sheet name in the data validation dropdown list on a different sheet. The sheet with the drop down list is called "Mix Design Costs" and the list is in T1. How would I go about doing this. There are about four different sheets that I would like to have buttons on them.
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Figured it out.


VBA Code:
Sub Cost_Active_Sheet()
Dim strSheetName As String
strSheetName = ActiveSheet.Name
Sheets("Mix Design Cost").Range("T1").Value = strSheetName
End Sub
 
Upvote 0
Solution

Forum statistics

Threads
1,215,028
Messages
6,122,749
Members
449,094
Latest member
dsharae57

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