What I would like to see in Excel 2016

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
Here's what I want:



  • The ability to multi-select sheets from the Unhide sheets dialog so that I can unhide more than 1 at a time.
  • :)


Code:
Sub UnhideAllSheets()
Dim ws As Worksheet
For Each ws In ActiveWorkbook.Worksheets
ws.Visible = xlSheetVisible
Next ws
End Sub

Save it to your personal workbook
Then just Customize the ribbon and add it there..

that's what i did....
if i wait for microsoft it could take a while....
 
@deletedalien, I don't think that was exactly what Jon meant (he is probably aware how to loop through sheets with code :) ), I think you will find Jon wanted to be able to manually select multiple individual sheets in the unhide sheets dialog... think the equivalent of holding Ctrl and then clicking individual cells in a spreadsheet.
 
Last edited:
@deletedalien, I don't think that was exactly what Jon meant (he is probably aware how to loop through sheets with code :) ), I think you will find Jon wanted to be able to manually select multiple individual sheets in the unhide sheets dialog... think the equivalent of holding Ctrl and then clicking individual cells in a spreadsheet.


ohhh ok ok ok....


Then.... No. hahahaha
 
(he is probably aware how to loop through sheets with code :) )

I wouldn't be too sure about that - you'd be amazed at some of the things he doesn't know... ;)
 
I wouldn't be too sure about that - you'd be amazed at some of the things he doesn't know... ;)

If that is the case I would suggest getting more practice on one of those Excel forums you hear about. Now if I can just remember where I last saw one....
 
Probably not as they tend to not over-react here but maybe not the wisest move to test that.
 

Forum statistics

Threads
1,215,374
Messages
6,124,567
Members
449,171
Latest member
jominadeo

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