How to Create Tabs Within Tabs in Excel

Опубликовано: 19 Февраль 2026
на канале: InAnOffice
5,376
20

In this video tutorial, you will learn how to efficiently manage your data in Excel by mastering the technique of creating tabs within tabs. Organize your spreadsheets like a pro and improve your productivity by following along with our step-by-step guide. Say goodbye to cluttered workbooks and hello to a more organized and structured Excel environment. Watch now and become a master of tabs within tabs in Excel!

Code used in this video:

Sub ShowSales2022()
' Hide all sections
Rows("10:39").EntireRow.Hidden = True
' Show section for Sales2022
Rows("10:24").EntireRow.Hidden = False
End Sub

Sub ShowSales2023()
' Hide all sections
Rows("10:39").EntireRow.Hidden = True
' Show section for Sales2023
Rows("25:39").EntireRow.Hidden = False
End Sub