How to unhide all columns in excel

Hide or show rows or columns

Hide or unhide columns in your spreadsheet to show just the data that you need to see or print.

Your browser does not support video. Install Microsoft Silverlight, Adobe Flash Player, or Internet Explorer 9.

Hide columns

  1. Select one or more columns, and then press Ctrl to select additional columns that aren’t adjacent.

  2. Right-click the selected columns, and then select Hide.

Note: The double line between two columns is an indicator that you’ve hidden a column.

Unhide columns

  1. Select the adjacent columns for the hidden columns.

  2. Right-click the selected columns, and then select Unhide.

    Or double-click the double line between the two columns where hidden columns exist.

Need more help?

You can always ask an expert in the Excel Tech Community or get support in the Answers community.

See Also

Unhide the first column or row in a worksheet

Need more help?

Watch Video – How to Unhide Columns in Excel

If you prefer written instruction instead, below is the tutorial.

Hidden rows and columns can be quite irritating at times.

Especially if someone else has hidden these and you forget to unhide it (or even worse, you don’t know how to unhide these).

While I can’t do anything about the first issue, I can show you how to unhide columns in Excel (the same techniques can also be used to unhide rows).

It may happen that one of the methods of unhiding columns/rows may not work for you. In that case, it is good to know the alternatives that can work.

There are many different situations where you may need to unhide the columns:

  1. Multiple columns are hidden and you want to unhide all columns at once
  2. You want to unhide a specific column (in between two columns)
  3. You want to unhide the first column

Let’s go through each for these scenarios and see how to unhide the columns.

Unhide All Columns At One Go

If you have a worksheet that has multiple hidden columns, you don’t need to go hunt each one and bring it to light.

You can do that all in one go.

And there are multiple ways to do this.

Using the Format Option

Here are the steps to unhide all columns at one go:

  1. Click on the small triangle at the top left of the worksheet area. This will select all the cells in the worksheet.
  2. Right-click anywhere in the worksheet area.
  3. Click on Unhide.

No matter where that pesky column is hidden, this will unhide it.

Note: You can also use the keyboard shortcut Control A A (hold the control key and hit the A key twice) to select all the cells in the worksheet.

Using VBA

If you need to do this often, you can also use VBA to get this done.

The below code will unhide column in the worksheet.

Sub UnhideColumns ()
Cells.EntireColumn.Hidden = False
EndSub

You need to place this code in the VB Editor (in a module).

If you want to learn how to do this with VBA, read a detailed guide on how to run a macro in Excel.

Note: To save time, you can save this macro in the Personal Macro Workbook and add it to the quick access toolbar. This will allow you to unhide all columns with a single click.

Using a Keyboard Shortcut

If you’re more comfortable using keyboard shortcuts, there is a way to unhide all columns with a few keystrokes.

Here are the steps:

  1. Select any cell in the worksheet.
  2. Press Control-A-A (hold the control key and press A twice). This will select all the cells in the worksheet
  3. Use the following shortcut – ALT H O U L (one key at a time)

If you can get hang of this keyboard shortcut, it could be a lot faster to unhide columns.

Note: The reason you need to press A twice when holding the control key is that sometimes when you press Control A, it only selects the used range in Excel (or the area that has the data) and you need to press the A again to select the entire worksheet.

Another keyword shortcut that works for some and not for others is Control 0 (from a numeric keypad) or Control Shift 0 from a non-numeric keypad. It used to work for me earlier but doesn’t work anymore. Here is some discussion on why it may happen. I suggest you use the longer (ALT HOUL) shortcut that works every time.

Unhide Columns in Between Selected Columns

There are multiple ways you can quickly unhide columns in between selected columns. The methods shown here are useful when you want to unhide a specific column(s).

Let’s go through these one-by-one (and you can choose to use that you find the best).

Using a Keyboard Shortcut

Below are the steps:

  1. Select the columns that contain the hidden columns in between. For example, if you are trying to unhide column C, then select column B and D.How to Unhide Columns in Excel - Select Columns
  2. Use the following shortcut – ALT H O U L (one key at a time)

This will instantly unhide the columns.How to Unhide Columns in Excel - Shortcuts Demo

Using the Mouse

One quick and easy way to unhide a column is to use the mouse.

Below are the steps:

Using the Format Option in the Ribbon

Under the home tab in the ribbon, there are options to hide and unhide columns in Excel.

Here is how to use it:

Another way of accessing this option is by selecting the columns and right clicking using the mouse. In the menu that appears, select the unhide option.

How to Unhide Columns in Excel - left Click Menu

Using VBA

Below is the code that you can use to unhide columns in between the selected columns.

Sub UnhideAllColumns()
Selection.EntireColumn.Hidden = False
End Sub

You need to place this code in the VB Editor (in a module).

If you want to learn how to do this with VBA, read a detailed guide on how to run a macro in Excel.

Note: To save time, you can save this macro in the Personal Macro Workbook and add it to the quick access toolbar. This will allow you to unhide all columns with a single click.

By Changing the Column Width

There is a possibility that none of these methods work when you try to unhide column in Excel. It happens when you change the Column Width to 0. In that case, even if you unhide the column, it’s width still remains 0, and hence you can’t see it or select it.

Below are the steps to change the column width:

This is by far the most reliable way to unhide columns in Excel. If everything fails, just change the column width.

Unhide the First Column

Unhiding the first column can be a little bit tricky.

You can use many of the methods covered above, with a little bit of extra work.

Let me show you a few ways.

Use the Mouse to Drag the First Column

Even when the first column is hidden, Excel allows you to select it and drag it to make it visible.

To do this, hover the cursor on the left edge of column B (or whatever is the leftmost visible column).

The cursor would change into a double arrow pointer as shown below.

hover the cursor on hidden column

Hold the left mouse button and drag the cursor to the right. You will see that it unhides the hidden column.

Unhide Column by dragging the mouse cursor

Go to a Cell in the First Column and Unhide it

But how do you go to any cell in the column that’s hidden?

Good question!

You use the Name Box (it’s left to the formula bar).

Name Box

Enter A1 in the Name Box. It will instantly take you to the A1 cell. Since the first column is hidden, you won’t be able to see it, but be assured that it’s selected (you’ll still see a thin line just left of B1).

Once the hidden column cell is selected, follow the below steps:

  • Click the Home tab.
  • In the Cells group, click on Format.
  • Hover the cursor on the ‘Hide & Unhide’ option.
  • Click on ‘Unhide Columns’

Select the First Column and Unhide it

Again! How do you select it when it’s hidden?

Well, there are many different ways to skin the cat.

And this is just another method in my kitty (this is the last cat sounding reference I promise).

When you select the leftmost visible cell and drag the cursor to the left (where there are row numbers), you end up selecting all the hidden columns (even when you don’t see it).

Unhide columns by selecting using mouse drag

Once you have select all the hidden columns, follow the below steps:

  • Click the Home tab.
  • In the Cells group, click on Format.
  • Hover the cursor on the ‘Hide & Unhide’ option.
  • Click on ‘Unhide Columns’

Check The Number of Hidden Columns

Excel has an ‘Inspect Document’ feature that is meant to quickly scan the workbook and give you some details about it.

And one of the things that you can do that ‘Inspect Document’ is to quickly check how many hidden columns or hidden rows are there in the workbook.

This might be useful when you get the workbook from someone and want to quickly inspect it.

Below are the steps on how to check the total number of hidden columns or hidden rows:

  1. Open the workbook
  2. Click on the File tab
  3. In the Info options, click on the ‘Check for Issues’ button (it’s next to the Inspect Workbook text).Click on the Check for issues button
  4. Click on Inspect Document.Click on Inspect Document option
  5. In the Document Inspector, make sure Hidden Rows and Columns option is checked.Make Sure Hidden rows and columns is checked
  6. Click the Inspect button.Click on Inspect Button

This will show you the total number of hidden rows and columns.

Number of Hidden columns found reported

It also gives you the option to delete all these hidden rows/columns. This can be the case if there is extra data that has been hidden and is not needed. Instead of finding hidden rows and columns, you can quickly delete these from this option.

You May Also Like the following Excel Tips/Tutorials:

  • How to Insert Multiple Rows in Excel – 4 Methods.
  • How to Quickly Insert New Cells in Excel.
  • Keyboard & Mouse Tricks that will Reinvent the Way You Excel.
  • How to Hide a Worksheet in Excel.
  • How to Unhide Sheets in Excel (All In One Go)
  • Excel Text to Columns (7 Amazing things you can do with it)
  • How to Lock Cells in Excel
  • How to Lock Formulas in Excel


Download Article

Quickly display one or more hidden columns in your Excel spreadsheet


Download Article

  • Using the Column Drag Tool
  • |

  • Using Right Click
  • |

  • Unhiding One Column with the Name Box
  • |

  • Unhiding All Columns
  • |

  • Q&A
  • |

  • Tips

Are you having trouble viewing certain columns in your Excel workbook? This wikiHow guide shows you how to display a hidden column in Microsoft Excel. You can do this on both the Windows and Mac versions of Excel. There are multiple simple methods to unhide hidden columns. You can drag the columns, use the right-click menu, or format the columns.

Things You Should Know

  • Hover your cursor to the right of the hidden columns, then click and drag to the right to unhide them.
  • Alternatively, select the columns adjacent to the hidden columns. Then right-click and select Unhide.
  • You can also go to Home > Format > Hide & Unhide to show hidden columns.
  1. Image titled Unhide Columns in Excel Step 1

    1

    Hover your cursor directly to the right of the hidden columns. When your cursor is between the column letters adjacent to the hidden columns, the cursor will change into two parallel lines with two arrows pointing horizontally.

    • You can identify hidden columns by looking for two lines between column letters.
    • Your cursor needs to be to the right of the two lines for this method. Placing the cursor to the left will increase the column size of the left adjacent column.
  2. Image titled Unhide Columns in Excel Step 2

    2

    Click and drag to the right. This will unhide the hidden columns between the adjacent columns.

    • Alternatively, you can double-click to immediately unhide the hidden column.

    Advertisement

  3. Image titled Unhide Columns in Excel Step 3

    3

  4. Advertisement

  1. Image titled Unhide Columns in Excel Step 4

    1

    Select the columns on both sides of the hidden columns. To do this:

    • Hold down the Shift key while you click both letters above the column
    • Click the left column next to the hidden columns.
    • Click the right column next to the hidden columns.
    • The columns will be highlighted when you successfully select them.
    • For example, if column B is hidden, you should click A and then C while holding down Shift.
  2. Image titled Unhide Columns in Excel Step 5

    2

    Right-click either of the selected columns. This will open the right-click pop up menu.

  3. Image titled Unhide Columns in Excel Step 6

    3

    Select Unhide in the right-click menu. The hidden columns between the two selected columns will be unhidden.

    • For more helpful excel tricks, check out our intro guide to Excel.
  4. Advertisement

  1. Image titled Unhide Columns in Excel Step 7

    1

    Click the Name Box. This is the drop down box to the left of the formula box.[1]

    • This method is great for unhiding the first column (A) since there isn’t a column to its left that you can select to access the right-click Unhide menu option.
  2. Image titled Unhide Columns in Excel Step 8

    2

    Type A1 in the Name Box and press Enter. Replace A with the letter of the column you want to unhide.

  3. Image titled Unhide Columns in Excel Step 9

    3

    Click the Home tab. It’s in the upper-left corner of the Excel window.

  4. Image titled Unhide Columns in Excel Step 10

    4

    Click Find & Select. This is in the «Editing» group in the Home tab. A drop down menu will open.

  5. Image titled Unhide Columns in Excel Step 11

    5

    Select Go To. This will open the «Go To» window.

  6. Image titled Unhide Columns in Excel Step 12

    6

    Type A1 in the «Reference» box and click OK.

  7. Image titled Unhide Columns in Excel Step 13

    7

    Click the Home tab. It’s in the upper-left corner of the Excel window.

  8. Image titled Unhide Columns in Excel Step 14

    8

    Click Format. This button is in the «Cells» section of the Home tab; you’ll find this section on the right side of the toolbar. A drop down menu will appear.[2]

  9. Image titled Unhide Columns in Excel Step 15

    9

    Select Hide & Unhide. This option is below the «Visibility» heading in the Format drop down menu. Selecting it will open a pop up menu.

  10. Image titled Unhide Columns in Excel Step 16

    10

    Click Unhide Columns. It’s near the bottom of the Hide & Unhide menu. Doing so will immediately unhide the column you selected in the Name Box.

  11. Advertisement

  1. Image titled Unhide Columns in Excel Step 17

    1

    Click the triangle in the top left corner of the spreadsheet. This is next to the row 1 label and column A label. Clicking the triangle will select the entire spreadsheet.

    • Hiding columns can be useful for when you have data you don’t need at the moment, but want to keep in the spreadsheet. For example, if you’re tracking your bills in Excel, you might want to hide purchase categories when you’re only working with the sum totals.
  2. Image titled Unhide Columns in Excel Step 18

    2

    Click the Home tab. It’s in the upper-left corner of the Excel window.

  3. Image titled Unhide Columns in Excel Step 19

    3

    Click Format. This button is in the «Cells» section of the Home tab; you’ll find this section on the right side of the toolbar. A drop down menu will appear.

  4. Image titled Unhide Columns in Excel Step 20

    4

    Select Hide & Unhide. This option is below the «Visibility» heading in the Format drop down menu. Selecting it will open a pop up menu.

  5. Image titled Unhide Columns in Excel Step 21

    5

    Click Unhide Columns. It’s near the bottom of the Hide & Unhide menu. Doing so will immediately unhide every hidden column in the sheet.

  6. Advertisement

Add New Question

  • Question

    What do I do if the hidden columns are A and B?

    Community Answer

    You can select the whole document and do the steps above to retrieve all hidden columns.

  • Question

    What do I do if I’ve followed the instructions provided, but I still cannot unhide column A in Excel?

    Community Answer

    Try unfreezing the column and unhiding, or freezing then unfreezing then unhiding. This process will work.

  • Question

    If column A is hidden in excel, how do I find it?

    Community Answer

    Just use the search bar on top and type there «A1» the hidden column should appear.

See more answers

Ask a Question

200 characters left

Include your email address to get a message when this question is answered.

Submit

Advertisement

  • If some columns are still not visible after you’ve attempted to unhide the columns, the width of the columns may be set to «0» or another small value. To widen the column, position your cursor on the right border of the column, and drag the column to increase its width.

  • If you want to unhide all hidden columns on an Excel spreadsheet, click on the «Select All» button, which is the blank rectangle to the left of column «A» and above row «1.» You can then proceed with the remaining steps in this article to unhide those columns.

Thanks for submitting a tip for review!

Advertisement

About This Article

Article SummaryX

1. Open your Excel document.
2. Select the columns on both sides of the hidden column.
3. Click Home
4. Click Format
5. Select Hide & Unhide
6. Click Unhide Columns

Did this summary help you?

Thanks to all authors for creating a page that has been read 666,342 times.

Is this article up to date?

Skip to content

logo, professor, excel

Let’s assume the following situation: You have received an Excel workbook from a colleague, client or anyone else but you have the feeling, that some rows or columns are hidden. By that, you’ve already done a good job because it is very difficult to spot from the small lines on the side or top that there are hidden rows or columns. But how do you unhide all rows and columns at the same time?

Method 1: Unhide all rows or columns manually

Hide rows and columns

Many people love the “Hide” function for hiding rows or columns, as it is very easy to use: (the numbers are corresponding with the image)

unhide all rows, unhide, hide, rows, columns, excel, all rows, all columns
  1. Mark the row(s) or column(s) that you want to hide.
  2. Right-click on the row number or column letter and click on “Hide”.
  3. Unfortunately, it has one big disadvantage: You can hardly recognize hidden rows or columns. It’s only symbolized by a thin double line between the row or column number.
  4. A better way for hiding rows or columns is the Group function.

Unhide rows and columns

Unhide all hidden rows by selecting the rows "around" the hidden row. Then right-click on any row number and click on "Unhide".
Unhide all hidden rows by selecting the rows “around” the hidden row. Then right-click on any row number and click on “Unhide”.

So, how to unhide all hidden rows?

  1. Select the whole area in which you suspect hidden rows. Alternatively select the whole worksheet in the top left corner.
  2. >Now double-click on the border between two row numbers (number 5 in the screenshot above). Each row has now it’s minimum size to cover all it’s contents. There is one disadvantage, though: The row height of all selected rows will be reset. So, if you have already set the row heights manually, it will be gone.
  3. Instead of double-clicking according to the number two above you can right-click on the column or row header (that means the column letter above your hidden column or the row number on the left-hand side). Next, click on “Unhide”.

Method 2: Use Professor Excel Tools

hide, unhide, manager, rows, columns, add-in, excel
Hide or unhide rows and columns comfortably with Professor Excel Tools

The Excel add-in Professor Excel Tools provide a function for unhiding all hidden rows and columns on all sheets with one click. Alternatively only unhide the rows or columns on the selected or current sheet.

To use the function, click on “Hidden Rows and Columns” in the “Professor Excel” ribbon. Now you’ll see a window as shown on the screenshot on the right-hand side.


Professor Excel Tools Box

This function is included in our Excel Add-In ‘Professor Excel Tools’

(No sign-up, download starts directly)


Henrik Schiffner is a freelance business consultant and software developer. He lives and works in Hamburg, Germany. Besides being an Excel enthusiast he loves photography and sports.

We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept”, you consent to the use of ALL the cookies.

.

7 Methods to Unhide Columns in Excel

By hiding the data, the selected columns disappear from the display. However, the labels of the remaining columns stay the same. In addition, a thick bar in the column header area appears to indicate the hidden columns.

It is essential to know the techniques to unhide data. The seven ways to unhide Excel columns are stated as follows:

You can download this Unhide Columns Excel Template here – Unhide Columns Excel Template

  1. Home tab of Excel ribbon
  2. Shortcut key
  3. Context menu
  4. Column width
  5. Ctrl+G (go to) command
  6. Ctrl+F (find) command
  7. Double-line icon
Table of contents
  • 7 Methods to Unhide Columns in Excel
    • Unhide the First Column in Excel
    • Locate and Unhide the Hidden Columns
    • Create a Custom View
    • Frequently Asked Questions
    • Recommended Articles

In the given techniques, the method names followed by the steps to unhide are listed.

Method #1–Home Tab of Excel Ribbon

  • Select the columns to the left and right of the hidden column.
  • In the Home tab, under the “cells” group, click the “format” dropdown.
  • From the “hide and unhide” option, select “unhide columns.”

Method #2–Shortcut Key

  • Select the columns to the left and right of the hidden column.
  • Press the shortcut “Alt H O U L.” Press one key at a time.

Unhide Column step 6

Method #3Context Menu

  • Select the columns to the left and right of the hidden column.
  • Right-click on the selected columns and choose “unhide.”

Method #4Column Width

  • Select the columns to the left and right of the hidden column.
  • Right-click on the selected columns and choose “column width.”
  • Enter any number as the “column width.”

Method #5Ctrl+G (Go To) Command

In the succeeding image, column B and C are hidden.

  • In the Home tab, click “find and select” drop-down and choose “go to.” Alternatively, press the shortcut key F5.
  • Specify any cell reference of the hidden column like B1:C1 in the “go to” dialog box. Click “Ok.”
  • Choose any preceding technique (methods #1 to #4) to unhide columns B and C.

step 9

Method #6Ctrl+F (Find) Command

In the succeeding image, column B and C are hidden.

  • Press “Ctrl+F” and the “find and replace” dialog box appears.
  • Enter the data of one of the hidden cells in the “find what” box.
  • Click “options>>” and select the check box “match entire cell contents.”
  • Click “find next” and close the “find and replace” dialog box.
  • Select any preceding technique (methods #1 to #4) to unhide columns B and C.

Note: This method works in case the cell referenceCell reference in excel is referring the other cells to a cell to use its values or properties. For instance, if we have data in cell A2 and want to use that in cell A1, use =A2 in cell A1, and this will copy the A2 value in A1.read more is unknown and the cell data is known.

step 10

Method #7Double-line Icon

  • Enter a single cell reference of the hidden column in the “name” box. This is the box to the left side of the formula bar.
  • Press the “Enter” key.
  • Select the columns to the left and right of the hidden column.
  • Double-click the double-line icon (having arrows pointing to the left and right) in-between the column labels. Alternatively, follow method#1 to unhide the column.

Unhide the First Column in Excel

It is difficult to select and unhide the first column (column A). To unhide all the hidden columns in one go, follow method #1.

The steps to unhide only the first column are listed as follows:

  1. Type A1 in the name box (shown in the succeeding image) and press the “Enter” key. Alternatively, in the Home tab, click “find and select” drop-down and choose “go to.”
  2. In the Home tab, under the “cells” group, click the “format” dropdown.
  3. From the “hide and unhide” option, select “unhide columns.”

step 14

Locate and Unhide the Hidden Columns

The steps to locate and unhide the hidden columns are listed as follows:

  • Select the entire sheet.
  • In the Home tab, click “find and select” drop-down and choose “go to.” Alternatively, click “go to special.”
  • Click “special” and select the check box “visible cells only.” Click “Ok.”

step 11

  • The visible part of the table is highlighted (shown in the succeeding image). Moreover, a line between the column labels appears that shows the hidden columns.
  • Select the highlighted part and follow any preceding technique (methods #1 to #4) to unhide columns B and C.

step 12

Create a Custom View

With the “custom view,” a user can save particular display settings. For instance, one user may want to hide columns while the other may wish to view the entire data in one go.

The steps to create a “custom view” are listed as follows:

  • In the View tab, click “custom views,” under the “workbook views” group.
  • Click “add” and in the “add view” dialog box, enter a name for the view you want to create. The succeeding image shows the “custom view” titled “my view.”
  • In “include in view,” select the settings of the view and click “Ok.”
  • The “custom view” titled “my view” is created. Every time you select “my view” and click “show,” the display settings of “my view” become visible.

Hence, with the selection of “my view,” the columns A, D, E, F, and G are displayed, as shown in the succeeding image. The columns B and C are hidden because they were not active when “my view” was created.

step 13

Frequently Asked Questions

What does it mean to unhide columns in Excel?

Sometimes it becomes essential to hide particular columns to have a contracted view of the large data set. The option of hiding certain columns is better than deleting them. Before the spreadsheet containing hidden columns goes to the next user, it becomes essential to unhide them for facilitating a complete data view.

The steps to unhide the columns of the entire worksheet in one go are listed as follows:
• Select the entire worksheet by either clicking the triangle to the left of column A or pressing “Ctrl+A.”
• In the Home tab, under the “cells” group, click the “format” dropdown.
• From the “hide and unhide” option, select “unhide columns.”
Hence, all the columns of the worksheet become visible.

How to unhide the first column (column A) in Excel?

The three methods to unhide column A are listed as follows:
1. First method
a. Enter the reference A1 in the name box (to the left of the formula bar). Press the “Enter” key.
b. In the Home tab, under the “cells” group, click the “format” dropdown.
c. From the “hide and unhide” option, select “unhide columns.”
2. Second method
a. Select column B by clicking on its header.
b. Move the cursor to the left of column B till the double-line icon (having arrows pointing to the left and right) in the column header area appears.
c. Drag the double-line icon to the right for expanding column A.
3. Third method
a. In the Home tab, click “find and select” drop-down and choose “go to.” Alternatively, press the shortcut key F5.
b. In the “go to” dialog box, enter A1 in the “reference” box. Click “Ok” and the cell A1 is selected.
c. Follow the steps “b” and “c” of the first method.

How to unhide all Excel rows and columns with a shortcut key?

The steps to unhide all rows and columns with a shortcut key are listed as follows:
• Select the entire worksheet by either clicking the triangle to the left of column A or pressing “Ctrl+A.”
• Press the shortcut “Ctrl+Shift+9” to unhide all rows. Press all keys together.
• Select the entire worksheet again.
• Press the shortcut “Alt H O U L” to unhide all columns. Press one key at a time.

Recommended Articles

This has been a guide to unhide column in Excel. Here we discuss the Top 7 methods to unhide column in Excel along with examples. You may also look at these useful functions in Excel –

  • Adding Columns in ExcelAdding a column in excel means inserting a new column to the existing dataset.read more
  • Move Columns in ExcelMoving a column in excel means shifting the data of one column to another. It is similar to interchanging or swapping the data of two or more columns.read more
  • VBA Delete ColumnIn VBA, deleting columns is simple. To select the column, we must first use the COLUMNS property, and then construct the syntax for the column delete method in VBA as follows: Columns (Column Reference). Deleteread more
  • Excel Rows vs. ColumnsRows are combination of cells that are aligned horizontally, whereas columns are made up of cells that are aligned vertically. Rows are represented by numbers, whereas columns are represented by alphabets and alphabet combinations.read more
  • Excel Date PickerExcel Date Picker is the drop-down calendar that facilitates the user to put the dates in the excel worksheet promptly. It is inserted with the help of ActiveX Control and is not available for the 64-bit version of MS Excel.read more

Понравилась статья? Поделить с друзьями:
  • How to understand meaning of a word
  • How to underline words in word
  • How to type a book in word
  • How to turn pdf in word
  • How to turn her on with one word