Skip to main content

Excel Shortcut Keys

Everyone wants speed in every work, to get speed in excel you used shortcuts for different operations, which is very useful in saving time ,you become a speeder in excel ,that save lots of time

Close a workbook

Ctrl+W

Open a workbook

Ctrl+O

Go to the Home tab

Alt+H

Save a workbook

Ctrl+S

Copy

Ctrl+C

Paste

Ctrl+V

Undo

Ctrl+Z

Remove cell contents

Delete

Choose a fill color

Alt+H, H

Cut

Ctrl+X

Go to Insert tab

Alt+N

Bold

Ctrl+B

Center align cell contents

Alt+H, A, C

Go to Page Layout tab

Alt+P

Go to Data tab

Alt+A

Go to View tab

Alt+W

Open context menu

Shift+F10, or

Context key

Add borders

Alt+H, B

Delete column

Alt+H, D, C

Go to Formula tab

Alt+M

Hide the selected rows

Ctrl+9

Hide the selected columns

Ctrl+0

Move to the Tell me or Search field on the Ribbon and type a search term for assistance or Help content.

Alt+Q, then enter the search term.

Open the File page and use Backstage view.

Alt+F

Open the Home tab and format text and numbers and use the Find tool.

Alt+H

Open the Insert tab and insert PivotTables, charts, add-ins, Sparklines, pictures, shapes, headers, or text boxes.

Alt+N

Open the Page Layout tab and work with themes, page setup, scale, and alignment.

Alt+P

Open the Formulas tab and insert, trace, and customize functions and calculations.

Alt+M

Open the Data tab and connect to, sort, filter, analyze, and work with data.

Alt+A

Open the Review tab and check spelling, add notes and threaded comments, and protect sheets and workbooks.

Alt+R

Open the View tab and preview page breaks and layouts, show and hide gridlines and headings, set zoom magnification, manage windows and panes, and view macros.

Alt+W

Select the active tab on the ribbon, and activate the access keys.

Alt or F10. To move to a different tab, use access keys or the arrow keys.

Move the focus to commands on the ribbon.

Tab key or Shift+Tab

Move down, up, left, or right, respectively, among the items on the Ribbon.

Arrow keys

Activate a selected button.

Spacebar or Enter

Open the list for a selected command.

Down arrow key

Open the menu for a selected button.

Alt+Down arrow key

When a menu or submenu is open, move to the next command.

Down arrow key

Expand or collapse the ribbon.

Ctrl+F1

Open a context menu.

Shift+F10

Or, on a Windows keyboard, the Context key (between the right Alt and right Ctrl keys)

Move to the submenu when a main menu is open or selected.

Left arrow key

Move to the previous cell in a worksheet or the previous option in a dialog.

Shift+Tab

Move one cell up in a worksheet.

Up arrow key

Move one cell down in a worksheet.

Down arrow key

Move one cell left in a worksheet.

Left arrow key

Move one cell right in a worksheet.

Right arrow key

Move to the edge of the current data region in a worksheet.

Ctrl+Arrow key

Enter the End mode, move to the next nonblank cell in the same column or row as the active cell, and turn off End mode. If the cells are blank, move to the last cell in the row or column.

End, Arrow key

Move to the last cell on a worksheet, to the lowest used row of the rightmost used column.

Ctrl+End

Extend the selection of cells to the last used cell on the worksheet (lower-right corner).

Ctrl+Shift+End

Move to the cell in the upper-left corner of the window when Scroll Lock is turned on.

Home+Scroll Lock

Move to the beginning of a worksheet.

Ctrl+Home

Move one screen down in a worksheet.

Page Down

Move to the next sheet in a workbook.

Ctrl+Page Down

Move one screen to the right in a worksheet.

Alt+Page Down

Move one screen up in a worksheet.

Page Up

Move one screen to the left in a worksheet.

Alt+Page Up

Move to the previous sheet in a workbook.

Ctrl+Page Up

Move one cell to the right in a worksheet. Or, in a protected worksheet, move between unlocked cells.

Tab key

Open the list of validation choices on a cell that has data validation option applied to it.

Alt+Down arrow key

Cycle through floating shapes, such as text boxes or images.

Ctrl+Alt+5, then the Tab key repeatedly

Exit the floating shape navigation and return to the normal navigation.

Esc

Scroll horizontally.

Ctrl+Shift, then scroll your mouse wheel up to go left, down to go right

Zoom in.

CTRL+ALT+=

Zoom out.

CTRL+ALT+-

Select the entire worksheet.

Ctrl+A or Ctrl+Shift+Spacebar

Select the current and next sheet in a workbook.

Ctrl+Shift+Page Down

Select the current and previous sheet in a workbook.

Ctrl+Shift+Page Up

Extend the selection of cells by one cell.

Shift+Arrow key

Extend the selection of cells to the last nonblank cell in the same column or row as the active cell, or if the next cell is blank, to the next nonblank cell.

Ctrl+Shift+Arrow key

Turn extend mode on and use the arrow keys to extend a selection. Press again to turn off.

F8

Add a non-adjacent cell or range to a selection of cells by using the arrow keys.

Shift+F8

Start a new line in the same cell.

Alt+Enter

Fill the selected cell range with the current entry.

Ctrl+Enter

Complete a cell entry and select the cell above.

Shift+Enter

Select an entire column in a worksheet.

Ctrl+Spacebar

Select an entire row in a worksheet.

Shift+Spacebar

Select all objects on a worksheet when an object is selected.

Ctrl+Shift+Spacebar

Extend the selection of cells to the beginning of the worksheet.

Ctrl+Shift+Home

Select the current region if the worksheet contains data. Press a second time to select the current region and its summary rows. Press a third time to select the entire worksheet.

Ctrl+A or Ctrl+Shift+Spacebar

Select the current region around the active cell.

Ctrl+Shift+Asterisk (*)

Select the first command on the menu when a menu or submenu is visible.

Home

Repeat the last command or action, if possible.

Ctrl+Y

Undo the last action.

Ctrl+Z

Expand grouped rows or columns.

While hovering over the collapsed items, hold SHIFT and scroll down.

Collapse grouped rows or columns.

While hovering over the expanded items, hold SHIFT and scroll up.

Comments

Popular posts from this blog

GSTR 1 CDNR sheet Editing

You spent lots of time in structuring the CDNR sheet for future working. It easy for 1 time, took more time if you have 2 sheets but if you have more than 5 sheets then this trick helps you in time-saving and from machine work. It simple and easy  Here are the steps : Press ALT +F11 insert new module copy the code and paste in module Sub vir() Application.ScreenUpdating =false     Rows("1:4").Select     Range("O1").Activate     Selection.Delete Shift:=xlUp     ActiveSheet.Shapes.Range(Array("Picture 1")).Select     Selection.Delete     Range("C1:F1").Select     Selection.ClearContents     Range("J1:M1").Select     Selection.ClearContents     Range("A1:A2").Select     With Selection         .HorizontalAlignment = xlGeneral         .VerticalAlignment = xlCenter         .WrapText = True         .Or...

autofit rows and column in excel vba

Everytime we copy the data  and paste in new sheet , it get unfit . Some data unvisible and Column are not unfit .we require to column auto resize  method 1 press  CTRL + A  then press Alt then button H then button O then button I it easy but if you have many sheet method 2 copy it on module Sub autofit ()  Rows. Entirerow. Autofit Columns. Entirecolumn. Autofit  End sub