Showing posts with label excel. Show all posts
Showing posts with label excel. Show all posts

Monday, July 4, 2016

Excel Tips : How to unhide Multiple Sheets in Excel

Steps to Unhide all the sheets in Excel at once.
1. Press Alt+F11 or Developer >> Visual Basic
2. Go to Insert >> Module
3. In the VBA Code Editor Window, copy and paste the following Code.


Sub Unhide_Multiple_Sheets()
Dim ws As Worksheet
 
    For Each ws In ActiveWorkbook.Worksheets
     
        ws.Visible = xlSheetVisible
 
    Next ws

End Sub




4. Then click RUN Button on Standard toolbar
5. And there you will get all hideen sheets unhidden.

Share this Post if Your Like.

Excel Tips : How to unhide Multiple Sheets in Excel

Steps to Unhide all the sheets in Excel at once.
1. Press Alt+F11 or Developer >> Visual Basic
2. Go to Insert >> Module
3. In the VBA Code Editor Window, copy and paste the following Code.

Sub Unhide_Multiple_Sheets()
Dim ws As Worksheet
 
    For Each ws In ActiveWorkbook.Worksheets
     
        ws.Visible = xlSheetVisible
 
    Next ws

End Sub



4. Then click RUN Button on Standard toolbar
5. And there you will get all hideen sheets unhidden.

Share this Post if Your Like.

Excel Tips : How to unhide Multiple Sheets in Excel

Steps to Unhide all the sheets in Excel at once.
1. Press Alt+F11 or Developer >> Visual Basic
2. Go to Insert >> Module
3. In the VBA Code Editor Window, copy and paste the following Code.

Sub Unhide_Multiple_Sheets()
Dim ws As Worksheet
    
    For Each ws In ActiveWorkbook.Worksheets
        
        ws.Visible = xlSheetVisible
    
    Next ws

End Sub




4. Then click RUN Button on Standard toolbar
5. And there you will get all hideen sheets unhidden.

Share this Post if Your Like.

Friday, March 25, 2016

Excel Tips : Split the Column of Data based on what you type..



You need to seperate first and last names (or part names and numbers, or any other data) into separate columns. A new Excel 2013 feature called Flash Fill can help.

1. Enter the first name or other value in the columns next to your data and press Enter.
2. Start typing the next name. Flash fill will show the suggested names. 
3. If it looks good just press Enter to accept the list.

To continue typing without using suggested name, Press Escape..