Missing Worksheet with Data Validation List Options

aleah657

New Member
Joined
Sep 19, 2024
Messages
1
Office Version
  1. 2019
Platform
  1. Windows
Issue:
I have a workbook that has data validation drop-down lists. The list options were put on another worksheet. The worksheet is missing from the workbook altogether. The data validation still works.
The data validation identifies the list coming from a range on "Sheet 4." I don't currently have a Sheet 4 in the worksheet tab options (either hidden or unhidden). How is the DV still working if the sheet is completely missing from the workbook? Or, how is the sheet so hidden none of the online suggestions are finding it?
Microsoft 365 For Enterprise
No macros
No data protection

What I Have Tried:
Advanced - Display All Object
Advanced - Show all Worksheets
Maximizing the Excel Window
Unhide all Worksheets Option (grayed out with no hidden worksheets).
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
when you click on the Data Validation icon on the Data Menu, what is diplayed? There is an option that could have Sheet 4 "Very Hidden". its a vba thing.

put this code into Module 1
Sub UnHide()
Dim ws As Worksheet
For Each ws In Sheets
ws.Visible = True
Next
End Sub
 
Last edited:
Upvote 0
Solution

Forum statistics

Threads
1,221,539
Messages
6,160,412
Members
451,644
Latest member
hglymph

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