Top 10 # Xóa Unhide Trong Excel Xem Nhiều Nhất, Mới Nhất 3/2023 # Top Trend | Trucbachconcert.com

How To Unhide Rows In Excel

Download Article

Download Article

Unhiding a Specific Row

Find the hidden row. Look at the row numbers on the left side of the document as you scroll down; if you see a skip in numbers (e.g., row 23 is directly above row 25), the row in between the numbers is hidden (in 23 and 25 example, row 24 would be hidden). You should also see a double line between the two row numbers.

It’s in the drop-down menu. Doing so will prompt the hidden row to appear.

Unhide a range of rows. If you notice that several rows are missing, you can unhide all of the rows by doing the following:

This tab is just below the green ribbon at the top of the Excel window.

If you’re already on the Home tab, skip this step.

This option is in the “Cells” section of the toolbar near the top-right of the Excel window. A drop-down menu will appear.

You’ll find this option in the Format drop-down menu. Selecting it prompts a pop-out menu to appear.

Adjusting Row Height

This tab is just below the green ribbon at the top of the Excel window.

If you’re already on the Home tab, skip this step.

This option is in the “Cells” section of the toolbar near the top-right of the Excel window. A drop-down menu will appear.

It’s in the drop-down menu. This will open a pop-up window with a blank text field in it.

Enter the default row height. Type 14.4 into the pop-up window’s text field.

Community Q&A

Add New Question

The top 7 rows of my Excel worksheet have disappeared. I’ve tried to “unhide” from the Format menu, but nothing happens. What do I do?

You’ll have to unlock the cells (via the format pop-up), then hide them all before unhiding them.

There is a possibility you did not hide the rows but reduced your rows’ height to minimum. Select all rows above and below of your 7 rows and increase rows height from format menu. It will re-adjust the height of rows and your rows will be visible.

This article was written by Jack Lloyd. Jack Lloyd is a Technology Writer and Editor for wikiHow. He has over two years of experience writing and editing technology-related articles. He is technology enthusiast and an English teacher. This article has been viewed 309,392 times.

How helpful is this?

Updated: November 17, 2020

Thanks to all authors for creating a page that has been read 309,392 times.

Robert Theriault

“I had some rows hidden and couldn’t figure out how to unhide the rows. The article solved that problem for me. Thanks” …” more

Unhiding All Worksheets Within An Excel Workbook

Although you can quickly hide as many worksheets within a workbook as you like, we’re still limited to unhiding individual worksheets one at a time – unless you’re aware of Excel’s Custom Views feature. Fortunately, there is another way to avoid the agony of manually unhiding worksheets one at a time.

In this article I’ll show you how to use a single line of programming code to unhide the worksheets. Programming code in Excel is often referred to as macros. In this case we’re not creating a permanent macro, but rather typing a line of code to run on demand.

Figure 1: There are a variety of ways to hide worksheets in Excel.

Figure 2: Unfortunately, you must unhide worksheets one at a time.

You probably don’t have the time or inclination to unhide more than a couple of worksheets in this fashion, so instead we’ll use a bit of programming code to instantly display all worksheets at once:

As illustrated in Figure 3, press Alt-F11 on your keyboard to display Excel’s Visual Basic Editor. Mac users should press Fn-Alt-F11. Although it looks like a separate program, it’s a hidden aspect of Excel that most users haven’t seen before.

Select Immediate Window from the View menu, or press Ctrl-G on your keyboard (for Mac, Ctrl-Cmd-G).

At this point the Immediate window will appear on-screen. This is a special area where any programming code you type will be executed immediately, hence the name.

Type the following line of programming code into the Immediate window exactly as written below, and press Enter.

For Each s In Sheets: s.Visible = True: Next

The downside of the Immediate Window is you don’t get any direct feedback if your programming code worked, other than seeing that all of your worksheets are now visible within the workbook. Error prompts will appear if you press Enter when the line of code is either incomplete or contains typographical errors.

You may also encounter an error if the workbook is protected by way of the Protect Workbook command on Excel’s Review menu.

You can safely exit the Visual Basic Editor once you’ve run the line of code.

Figure 3: A single line of code in the Immediate Window will unhide all worksheets in the workbook.

The aforementioned line of code utilizes Visual Basic for Applications in Microsoft Excel. This is known as an object-oriented programming language, so if you want a little insight as to what the macro is doing:

For Each sets up a loop.

s is a variable that serves as a temporary placeholder for a worksheet to be acted on.

Sheets is a collection of all worksheets within the workbook. This actually includes other types of sheets as well, meaning Chart Sheets and Macro Worksheets. We could be more specific and use the Worksheets collection instead, but Sheets results in less typing.

Each worksheet has a Visible property, and in this case we’re setting it to True. The setting gets set to False when you hide a worksheet.

Next simply instructs Excel to skip to the next worksheet in succession, until all have been processed.

If you were to store this within a formal macro, the code might take this form:

For each s in Sheets

s.Visible

Next

The Immediate Window only allows us to execute a single line of code at a time, so the colons allow us to string three lines of code together into a single line that can be executed.

How To Hide And Unhide Rows In Excel

The tutorial shows three different ways to hide rows in your worksheets. It also explains how to show hidden rows in Excel and how to copy only visible rows.

If you want to prevent users from wandering into parts of a worksheet you don’t want them to see, then hide such rows from their view. This technique is often used to conceal sensitive data or formulas, but you may also wish to hide unused or unimportant areas to keep your users focused on relevant information.

On the other hand, when updating your own sheets or exploring inherited workbooks, you would certainly want to unhide all rows and columns to view all data and understand the dependencies. This article will teach you both options.

How to hide rows in Excel

Anyway, you begin with selecting the rows you’d like to hide:

To select multiple contiguous rows, drag across the row headings using the mouse. Or select the first row and hold down the Shift key while selecting the last row.

With the rows selected, proceed with one of the following options.

Hide rows using the ribbon

If you enjoy working with the ribbon, you can hide rows in this way:

Under Visibility, point to Hide & Unhide, and then select Hide Rows.

Either way, the selected rows will be hidden from view straight away.

If you’d rather not take your hands off the keyboard, you can quickly hide the selected row(s) by pressing this shortcut: Ctrl + 9

How to unhide rows in Excel

As with hiding rows, Microsoft Excel provides a few different ways to unhide them. Which one to use is a matter of your personal preference. What makes the difference is the area you select to instruct Excel to unhide all hidden rows, only specific rows, or the first row in a sheet.

Unhide rows by using the ribbon

Here is the Excel Unhide Rows shortcut: Ctrl + Shift + 9

Pressing this key combination (3 keys simultaneously) displays any hidden rows that intersect the selection.

In order to unhide all rows on a sheet, you need to select all rows. For this, you can either:

Press the Select All shortcut: Ctrl + A

Please note that in Microsoft Excel, this shortcut behaves differently in different situations. If the cursor is in an empty cell, the whole worksheet is selected. But if the cursor is in one of contiguous cells with data, only that group of cells is selected; to select all cells, press Ctrl+A one more time.

Once the entire sheet is selected, you can unhide all rows by doing one of the following:

Press Ctrl + Shift + 9 (the fastest way).

How to unhide all cells in Excel

To unhide all rows and columns, select the whole sheet as explained above, and then press Ctrl + Shift + 9 to show hidden rows and Ctrl + Shift + 0 to show hidden columns.

How to unhide specific rows in Excel

Depending on which rows you want to unhide, select them as described below, and then apply one of the unhide options discussed above.

To show one or several adjacent rows, select the row above and below the row(s) that you want to unhide.

To unhide multiple non-adjacent rows, select all the rows between the first and last visible rows in the group.

For example, to unhide rows 3, 7, and 9, you select rows 2 – 10, and then use the ribbon, context menu or keyboard shortcut to unhide them.

How to unhide top rows in Excel

Hiding the first row in Excel is easy, you treat it just like any other row on a sheet. But when one or more top rows are hidden, how do you make them visible again, given that there is nothing above to select?

The clue is to select cell A1. For this, just type A1 in the Name Box, and press Enter.

Tips and tricks for hiding and unhiding rows in Excel

As you have just seen, hiding and showing rows in Excel is quick and straightforward. In some situations, however, even a simple task can become a challenge. Below you will find easy solutions to a few tricky problems.

How to hide rows containing blank cells

To hide rows that contain any blank cells, proceed with these steps:

Select the range that contains empty cells you want to hide.

Press Ctrl + 9 to hide the corresponding rows.

This method works well when you want to hide all rows that contain at least one blank cell, as shown in the screenshot below:

If you want to hide blank rows in Excel, i.e. the rows where all cells are blank, then use the COUNTBLANK formula explained in How to remove blank rows to identify such rows.

How to hide rows based on cell value

To hide and show rows based on a cell value in one or more columns, use the capabilities of Excel Filter. It provides a handful of predefined filters for text, numbers and dates as well as an ability to configure a custom filter with your own criteria (please follow the above link for full details).

To unhide filtered rows, you remove filter from a specific column or clear all filters in a sheet, as explained here.

Hide unused rows so that only working area is visible

In situations when you have a small working area on the sheet and a whole lot of unnecessary blank rows and columns, you can hide unused rows in this way:

Press Ctrl + Shift + Down arrow to extend the selection to the bottom of the sheet.

Press Ctrl + 9 to hide the selected rows.

In a similar fashion, you hide unused columns:

Select an empty column that comes after the last column with data.

Press Ctrl + Shift + Right arrow to select all other unused columns to the end of the sheet.

Press Ctrl + 0 to hide the selected columns. Done!

If you decide to unhide all cells later, select the entire sheet, then press Ctrl + Shift + 9 to unhide all rows and Ctrl + Shift + 0 to unhide all columns.

If your worksheet contains hundreds or thousands of rows, it can be hard to detect hidden ones. The following trick makes the job easy.

This will select all visible cells and mark the rows adjacent to hidden rows with a white border:

How to copy visible rows in Excel

Supposing you have hidden a few irrelevant rows, and now you want to copy the relevant data to another sheet or workbook. How would you go about it? Select the visible rows with the mouse and press Ctrl + C to copy them? But that would also copy the hidden rows!

To copy only visible rows in Excel, you’ll have to go about it differently:

Select visible rows using the mouse.

Press Ctrl + C to copy the selected rows.

Press Ctrl + V to paste the visible rows.

Cannot unhide rows in Excel

If you have troubles unhiding rows in your worksheets, it’s most likely because of one of the following reasons.

1. The worksheet is protected

Whenever the Hide and Unhide features are disabled (greyed out) in your Excel, the first thing to check is worksheet protection.

2. Row height is small, but not zero

In case the worksheet is not protected but specific rows still cannot be unhidden, check the height of those rows. The point is that if a row height is set to some small value, between 0.08 and 1, the row seems to be hidden but actually it is not. Such rows cannot be unhidden in the usual way. You have to change the row height to bring them back.

To have it done, perform these steps:

Select a group of rows, including a row above and a row below the problematic row(s).

This will make all hidden rows visible again.

If the row height is set to 0.07 or less, such rows can be unhidden normally, without the above manipulations.

3. Trouble unhiding the first row in Excel

If someone has hidden the first row in a sheet, you may have problems getting it back because you cannot select the row before it. In this case, select cell A1 as explained in How to unhide top rows in Excel and then unhide the row as usual, for example by pressing Ctrl + Shift + 9.

If none of the above tips has worked for you, there is a chance that the hidden rows are a result of filtering. In this case, clear the filters, as explained in How to remove filter in Excel.

This is how you hide and undie rows in Excel. I thank you for reading and hope to see you on our blog next week!

You may also be interested in

Cách Sửa Lỗi Bị Ẩn Dòng Không Unhide Được Trong Excel

Ví dụ như sau (tải file ví dụ tại: http://bit.ly/2SaVb77)

Cách sửa lỗi bị ẩn dòng không unhide được trong Excel 1

Trong hình trên, chúng ta có thể thấy bảng dữ liệu có các dòng đã bị ẩn đi. Nhưng khi chọn unhide các dòng bị ẩn thì không có kết quả gì.

Cách sửa lỗi này như thế nào?

Nguyên nhân bảng dữ liệu có dòng ẩn không unhide được

Để kiểm tra có đúng nguyên nhân này không, chúng ta chọn thẻ Data

Cách sửa lỗi bị ẩn dòng không unhide được trong Excel 2

Khi thấy biểu tượng Clear (loại bỏ chế độ lọc) có nổi rõ lên (không chìm như biểu tượng Reapply bên dưới) thì chứng tỏ bảng dữ liệu đang ở chế độ lọc dữ liệu.

Cách khắc phục lỗi không unhide được dòng ẩn

Chúng ta chỉ việc bấm vào biểu tượng Clear trong thẻ Data là bảng dữ liệu sẽ tự động mở các dòng bị ẩn:

Cách sửa lỗi bị ẩn dòng không unhide được trong Excel 3

Bảng dữ liệu đầy đủ khi bỏ lọc

Chú ý: Chỉ xảy ra trường hợp này với dòng bị ẩn.

Lọc dữ liệu trực tiếp trong bảng với Advanced Filter

Chúng ta thường sử dụng AutoFilter trong excel để lọc dữ liệu trong bảng mà ít khi để ý đến Advanced Filter cũng có tác dụng lọc dữ liệu trực tiếp trong bảng.

Cách làm như sau:

Ví dụ muốn lọc dữ liệu theo nhân viên là Lâm:

Cách sửa lỗi bị ẩn dòng không unhide được trong Excel 4

Filter the list, in-place là cách thức lọc: lọc trực tiếp trong bảng dữ liệu

List range: vùng bảng dữ liệu cần lọc (bao gồm cả dòng tiêu đề)

Criteria range: điều kiện cần lọc (gồm tiêu đề và điều kiện tương ứng theo tiêu đề đó)

Khi bấm OK thì chúng ta sẽ có kết quả là bảng dữ liệu được lọc giống như ở đề bài. Và các dòng đã bị ẩn bởi chức năng lọc này sẽ không Unhide được.

Hướng dẫn cách lập báo cáo chi tiết NXT kho bằng Advanced Filter trong Excel

Tự động lọc danh sách không trùng với Advanced Filter VBA cực kỳ đơn giản

Hướng dẫn cách sử dụng chức năng Advanced Filter trong VBA

Đánh giá bài viết này