Excel sheet Visible, Hidden and Very Hidden modes

Hello Readers,

Welcome to Coding by Learning !!! 😀 

This is some interesting topic. We are going to learn the three visible modes of excel sheet. Visible, Hidden and Very Hidden

Visible Mode

  • User can view all the sheets at visible mode. 

Hidden Mode

  • When user hide sheet it will be changed to hidden mode. 

  • There are 2 ways to make an excel sheet to hidden mode

Way1 

  • Do right click on the top of the sheet name on tab and select hide option


Way 2

  • Go to VBA editor (Alt+F11).
  • Select the sheet in the project explorer
  • Now see the last property called Visible and select the option 0- xlSheetHidden



Very hidden Mode

  • Go to VBA editor (Alt+F11).
  • Select the sheet in the project explorer.
  • Now see the last property called Visible and select the option 2- xlSheetVeryHidden



Let's see with some more points on this topic in the next post. Visit : https://codingbylearning.blogspot.com/2022/05/more-regarding-excel-sheet-visible.html

Happy learning & Happy coding!!!

Comment and share this post to your friends and colleagues 😀

Comments

Popular posts from this blog

VBA Interview Questions - Part 2 - Variables and Data types

VBA Interview questions - screen updating

VBA Interview questions - Part 3 - Array concept