Excel Tips, Tricks, Cheats & Hacks – Microsoft MVP Edition

Share

Facebook
Twitter
LinkedIn

I was recently asked, What is my most recommended Excel Tip?

My quick response was to regularly press Ctrl+S, Yes simply Save.

I have been caught out a number of times developing large excel systems where I haven’t saved data and after 2 or 3 hours of work I have lost that work when Excel or the Computer has crashed etc.

Close behind Ctrl+S is setting up the printer and page size as early in a project as you can.

But this got me thinking what would other Microsoft MVP’s Excel suggestions be ?

So I shot off an email to all the other Microsoft Excel MVP’s asking for their favorite Excel Tip, Trick, Cheat, VBA Code, Excel Formula or Function, Algorithm or Hack.

This post will now present these in the order they were received.

 

001. Assign Sequential Numbers – Bob Umlas

There are many ways to assign successive numbers using VBA, but I believe this one is the quickest.

If I know I have a range, referenced by the object variable Rg, for example, I could assign successive numbers parallel to that range by this statement:
Rg.Offset(, 1).Value = [row(1:10000)]
If Rg is 10 rows long, this will assign the values 1-10 (not 1-10000).

001 Sequential Numbers

Tip contributed by: Bob Umlas
Website: This isn’t Excel it’s Magic!

 

002. Format This Object – Jon Peltier

With any object selected, be it a Cell, Range, Worksheet, Chart, Chart Component, Text Box or other shape, Hyper Link, anything, Select the Object and press Ctrl+1. The Format Properties Dialog will be shown.

 

Tip contributed by: Jon Peltier

 

003. Stop Cell Change by Color – Rick Rothstein

Rick has provided a piece of VBA Code that stops a user entering data into a Yellow colored cell.

It is event code, so all of it should be placed in a sheet module (right click the sheet’s name tab, select “View Code” and copy/paste it into the code window that opens up… remember to save the sheet as an “Excel Macro-Enabled Workbook” if using XL2007 or above).

What the code does is, without having to protect the sheet, prevent a user from selecting any cell that has been manually colored yellow (you can, of course, change the color as desired). If the user attempts to select such a cell, the previously active cell will become re-selected. While the code works with yellow-filled cells, the If condition can be changed to test for any cell property (for example, bold text) or set of cell properties (red, underlined text) and it will work just as well.

Here is the code…

003. Stop Cell Change by Color_Code_2

Tip contributed by: Rick Rothstein
Website: http://www.excelfox.com/forum/f22/

004. Double Click Copy – Bill Jelen

Double click the fill handle to quickly copy a formula to the bottom of the adjacent data set.

004 Douible click

This is the Mouse Version of Copy Down as presented in Point 013 below.

Tip contributed by: Bill Jelen
Website: MrExcel.com

 

005. VBA Code Check – Felipe Costa Gualberto

It is widely known that you should use Option Explicit in the declaration section of all components, and I agree with that.

The tip I give needs Option Explicit in the declaration section:

You should often compile your project. Use the Alt+D and press Enter to ensure your code is correct and you’ll have no surprises while running your macro. A VBA project that doesn’t compile is a bad project.

When you request to compile the code, VBE passes through all your code, checking if there aren’t undeclared variables, missing references, bad syntax, etc.

I’m heavily addicted compiling my code and I do it every minute when developing an Excel Application.

Take advantage the fact that compiling speed in VBA is blazing fast!

Tip contributed by: Felipe Costa Gualberto
Website: http://www.ambienteoffice.com.br

 

006. Name Manager – Henk Vlootman

For me the Name box and the Name manager prove to be of priceless value.

Since I only work with ranges. I use the Name functionality as the place where I control my ranges.

If I have a complex model I can use the name box to down-drill my output by my formulas until I arrive at the input. Without this functionality maintaining Excel models proofs to be very difficult.

Tip contributed by: Henk Vlootman
Website: Vlootman.nl

 

007. Show Pivot tables in Classical Form – Mynda Treacy

If you find yourself regularly editing the PivotTable options to get the Classic PivotTable Layout back, you know the useful layout where the row labels aren’t nested, then you might like to add the ‘Show in Tabular Form’ icon to your Quick Access Toolbar.

To do this Right Click on the Quick Access Toolbar and select Customize Quick Access Toolbar

007 Show in Tabular Form

 

 

 

 

 

 

 

 

 

 

 

 

 

The Show in Tabular Form Icon in the QAT

007 Show in Tabular Form-2

And while you’re there you’ll probably want to add the ‘Do Not Show Subtotals’ icon too

Tip contributed by: Mynda Treacy
Web site: http://www.myonlinetraininghub.com/blog

 

008. Easily add a Table of Contents to a File – Jan Karel Pieterse

The lowest level of documentation I add to a spreadsheet model is a table of content.

With many sheets in a workbook, this can be a tedious chore however. Lets have some tips around this.

1. Getting the list of sheets.
– Open the VBA editor (alt+F11):
– open the immediate pane (control+g or View, Immediate pane)
– Paste this line of code and hit enter:

For Each s in Worksheets: Debug.Print s.Name: Next

– Hold down the shift key and press arrow up until you’ve selected all sheetnames:
– control+c
– Go to your Excel TOC worksheet and press control+v:

2. Create hyperlinks to the worksheets

Enter this formula in cell B2:
=HYPERLINK(“#'”&A2&”‘!A1”,A2)
Note the hash, it ensures the link actually works! The single quote is there in case your worksheet
name has special characters like spaces.
– Drag the formula down (double-click the fill handle)
– Format the linked cells (hit control+1) like so:
o A fat black line along the right-hand side and the bottom:
o An equally fat grey line along the left-hand side and the top:
o A darker grey fill:
o Change the Font to black, increase the font size, make it Bold and white and remove the underline:
o Which makes your links look like this:

I have created a small utility that automates the process of updating the table of content: Download Link

Tip contributed by: Jan Karel Pieterse
Website: http://www.jkp-ads.com/

 

009. Jump to the last cell of a contiguous range – Mike Alexander

Did you know you can quickly jump to the last cell in a column or a row with a simple double-click of the mouse?

Columns:

cap1

Rows:

Cap2

Caution: Be careful of blank cells. If you have a blank cell in the column or row, the cursor will jump to the last cell before the blank cell.

“There are two types of Excel users – Keyboard people and Mouse people. 
I’m a mouse person.  I hate taking my hand off the mouse.  If there is away I can doe something with the mouse, I’ll find it.
That why I love this tip so much. 
Hot Keys are for nerds.”
Mike Alexander

 

Tip contributed by: Mike Alexander
Website: http://www.datapigtechnologies.com/

 

010. Jump to a Filter’s search box – Jon Acampora

Alt+Down Arrow, E will jump the mouse cursor to the search box in the filter drop-down menus.

index

Tip contributed by: Jon Acampora

 

011. Use Ctrl+Enter – Tom Ogilvy

My favorite tip is to use Ctrl+Enter rather than Enter to fill any selection of contiguous or non-contiguous cells with whatever is in the active cell of the selection.

This can be a formula such as to generate random data to using in testing.

For example if I need integer data in  C2:C10; E2:G10 then I select that range, go to the formula bar and enter  =Trunc(rand()*100+1)  and complete with Ctrl+Enter. If I want to fix those numbers, I can then select the rectangular area doing a copy and then Paste Values.

A second tip using this technique is to build a pivot table to produce a subset of my data. Then do a copy and paste values to leave the values and removed the pivot table.  Select the area of row fields which will have many blank values. Do F5 (goto) and choose special, then blanks. This will select all the blank fields that need to be filled in.  Look at the active cell of the selection. Say it is B4. We can see that we want to fill each blank with the next value directly above it.  Go to the formula bar and type in =B3 which refers to the non-blank cell above B4, then use Ctrl+Enter. Your data base is completed but we need to remove the formulas.  Select all the row field area; do copy and then paste values to remove the formulas and replace them with the values they produce.

Tip contributed by: Tom Ogilvy
Website: http://www.allexperts.com/ep/1059-2697/Excel/Tom-Ogilvy.htm

 

012. Keep Dummy Data nearby – Oz du Soleil

Because my work involves testing and building examples, I use lots of random data.
1.  In Dropbox, I keep a pinned workbook called “Random Names and Cities”
Having it pinned and stored in Dropbox allows me to access that file wherever I’m at.
pinned items

 

2.  The workbook has thousands of bits of data including cocktail names, colors, fish names, professional designations, cities, etc.
One sheet has a name-randomizing section where I can hit F9 and get more names.
Thus, if I need a few rows of random data, or thousands, I can create them myself.
pinned names workbook

Tip contributed by: Oz du Soleil
Website: DataScopic.net

 

013. Copy Down / Copy Right – Zack Barresse

You can Copy Down or Copy Right using CTRL+D, CTRL+R (Fill Down, Right)

Copy Down

014 Ctrl+D

Copy Right

014 Ctrl+R

This is the Keyboard Version of Double Click Copy as presented in Point 004 above.

Tip contributed by: Zack Barresse
Website: http://exceltables.com/

 

014. Learn to use Google Search – Ian Huitson

I have answered nearly 10,000 posts at the http://forum.chandoo.org/ and one thing I have found is that it is very rare to get asked questions that haven’t been answered before, very rare.

Learn to use Google Search and some common websites like http://chandoo.org/wp/ and the other websites shown by the authors above. These websites all have search boxes which search the local website.

These websites have a wealth of Excel history, with worked and solved examples in posts and forums

Sometime the example might be of a mine feasibility study where you are after data on DNA Sequencing, but the solution to the data manipulation maybe very similar, so learn to think laterally about your problem and you’ll be amazed at the solutions that can be found

Tip contributed by: Ian Huitson “Hui”
Website: http://chandoo.org/wp/about-hui/

 

015. Trim with any delimiter – Rick Rothstein

Excel’s TRIM function is neat in that it collapses all multiple internal contiguous space characters down to a single space…

Did you ever wish there was a simple way to do that for any delimiter other than a space?

Here is a function that will do it for you…

Delim2

This function must be saved in a Code Module, not a Worksheet Module

The first argument is the text you want to parse. The second argument is the delimiter (which can be one or more characters long). The third argument, which is optional, let’s you specify whether you want to keep or delete any leading or trailing delimiters which may end up in the result (Excel’s TRIM function automatically deletes leading and trailing spaces, but I decided to let it be an option). The default is False which means leading and trailing delimiters will be deleted. So, let’s say you had a concatenation function of some sort which produced the following output…

If in Cell A1 you had: one, , , two, three, , , , , , , four, , ,_

Note there is a trailing space at the end of the above text string. Passing this text into the Reduce function, and specifying “, ” (comma space) as the delimiter, would result in the following text being returned from the function…

Using the function: =Reduce(A1, “, ” ) or =Reduce(A1, “, “, False )

Excel will return: one, two, three, four

Note: For those of you who may be wondering about those numbers in the Array function call, here is a link to the thread where they originally came from…

https://groups.google.com/ forum/#!topic/microsoft. public.vb.general.discussion/ TqZHK9cPnpU

Tip contributed by: Rick Rothstein
Website: http://www.excelfox.com/forum/f22/

 

016. The Bad Find Example – Stephen Gersuk

Dating back to as early as 2002, VBA Help has contained an awful example of how to use the Find method. It continued until as recently as Excel 2010.

Badfind1

On the merely bad side, you should explicitly set LookIn, LookAt, SearchOrder (if you care), and MatchByte arguments in the initial invocation of the Find method, as all persist each time Find is invoked via VBA or Find is invoked from the user interface. (MatchCase and SearchFormat persist from invocation to invocation in the UI, but not in VBA; both default to False).

But this line,

Badfind2

… should NEVER be used, because

  1. If c Is Nothing, then c.Address will give a run-time error; and
  2. If c.Address doesn’t error, then c Is Nothing must be False.

You might think that VBA would stop evaluating the expression if “c Is Nothing“, but it doesn’t; VBA always evaluates all arguments to a logical expression.
What to do instead?

That depends on what else the loop does.

If it causes the values to eventually not be found (e.g., because you are changing the values, or hiding the rows in which they appear), then the c is Nothing test is what you need. If the same values will be found forever (e.g., because you are changing some other cell in the same row where the value is found), then c.Address <> firstAddress is golden.

The one-size-fits-all solution is to just do both:

Badfind3

Tip contributed by: Stephen Gersuk
Website: http://www.stephensexcel.info/

 

Closing

Many many thanks to the Microsoft Excel MVPs who contributed above.

I hope you get to to revue all the tips and pass comments and appreciation back to the authors as appropriate.

Next week the Excel Tips, Tricks, Cheats & Hacks theme will continue with the Excel Tips, Tricks, Cheats & Hacks – Chandoo.org Excel Ninja Edition, so keep an eye out for that.

If you have any Excel Tips, Tricks, Cheats & Hacks that you would like to share with the community, please leave  a tip in the comments below.

 

Facebook
Twitter
LinkedIn

Share this tip with your colleagues

Excel and Power BI tips - Chandoo.org Newsletter

Get FREE Excel + Power BI Tips

Simple, fun and useful emails, once per week.

Learn & be awesome.

Welcome to Chandoo.org

Thank you so much for visiting. My aim is to make you awesome in Excel & Power BI. I do this by sharing videos, tips, examples and downloads on this website. There are more than 1,000 pages with all things Excel, Power BI, Dashboards & VBA here. Go ahead and spend few minutes to be AWESOME.

Read my storyFREE Excel tips book

Overall I learned a lot and I thought you did a great job of explaining how to do things. This will definitely elevate my reporting in the future.
Rebekah S
Reporting Analyst
Excel formula list - 100+ examples and howto guide for you

From simple to complex, there is a formula for every occasion. Check out the list now.

Calendars, invoices, trackers and much more. All free, fun and fantastic.

Advanced Pivot Table tricks

Power Query, Data model, DAX, Filters, Slicers, Conditional formats and beautiful charts. It's all here.

Still on fence about Power BI? In this getting started guide, learn what is Power BI, how to get it and how to create your first report from scratch.

122 Responses to “10 Excel Keyboard Shortcuts I can’t live without!”

  1. Anup Agarwal says:

    Nice,

    Mine would be Ctrl + R (to fill right) and Ctrl + D (to fill down). I just love making good formulae which can be used all over the table.

  2. Radu says:

    Mine are (not in this order): Ctrl+S (save), Ctrl+W (close active workbook), Ctrl+PageDown/PageUp (navigate to the next/previous worksheet), F4 (toggle references), Ctrl+A/X/C/V (select all/cut/copy/paste), F9 (calculate).

  3. zaur says:

    I use ctrl+shift+1 for convert value to number format

  4. Finnur says:

    I'd add ctrl+shift+arrows to select tables and F9 to see what part of my larger than normal formula went wrong. Plus the standard ctrl+c, ctrl+x and ctrl+v.

  5. Jennifer says:

    Some of those mentioned already (eg CTRL + PageUp / PageDown to flick between tabs) but shift + f2 to add a comment and CTRL + 8 / CTRL + 9 to hide a row or column or CTRL + SHIFT + 8 or 9 to unhide. Oh and CTRL + SHIFT + $ to comvert a value to currency

  6. Paul Maddock says:

    I use the excel quick access toolbar, and use the corresponding alt+1-9 for my most used short cuts. So on there I currently have filter, paste values, pivot table, excel options, paste formulas which are my most used shortcuts.

    But apart from that f5 (go to function for blank, constants formulas).

  7. Stephen says:

    well I'm going to tell you I Use
    Alt+1 = paste values
    Alt+2 = paste formula
    Alt+3 = paste formats
    how?
    Excel 2007 - you can add items to the quick access toolbar and then when you press ALT it assigns them all a number/letter. it's just a case of finding the right commands.

    • Jason says:

      Excellent... made me look for them and when i did get them i just went crazy... hahahahahaha... thanks a lot stephen....

  8. Hui... says:

    Most of Chandoos and
    Ctrl Pg Up/Down - move to next active page
    Alt F11 - open VBA Editor window
    Ctrl F6 - Scroll between open workbooks
    Ctrl ~ - Show/Hide Formulas

  9. Alan says:

    For Tip #4 I always use CTRL+ALT+V, I find it easier on the fingertips.

    4. ALT+ES – Paste Special > Values

  10. Gaylen says:

    I have created a macro for the functions that I use most:

    Ctrl + shift + L to hightlight cell
    Ctrl + shift + M to unhighlight cell
    Ctrl + shift + O to paste formula
    Ctrl + shift + T to past format
    Ctrl + shift + E to format as accounting
    Ctrl + shift + I to use % format. and these excel. and many of the other tips mentioned.

    • Daniel says:

      how did you make these macros? Thanks!

      • Gojak says:

        Hi Daniel
        Simple - just record a macro of the action you want then when you save there'll be an 'assign shortcut' option for you. You can also change them after if you find it's not that convenient or you forget it too easily.
        Cheers

  11. Fred says:

    Using 2007 version:
    Crtl-tab to toggle in and out of excel with another workbook or applicaiton (word, ppt, outlook, etc). I prefer this over Crtl-F6 because i only need to use my left thumb and index finger instead of 2 hands for Crtl-F6. To me, the keys Crtl-F6 is too far away from one another, even if I don't have to worry about toggling to other applications like crtl-tab.

    Crtl-Pg Up and Crtl-Pg Down: too many worksheets to do QC work after each project/update.
    Shift+End+arrow key or Crtl+Shift+arrow key: depends on if i want the whole column/row/area.
    F4 for ease of formula control.

    Crtl+F to find/replace text, numbers, formula checking, etc.

    I have all paste special on the access tool bar instead. there are too many situations to use.
    Crtl+~ to see all cells with formulae.

    F2: not only edit the formula but to hi-light and understand where others cells are linked to this cell, if any.

  12. Dennis says:

    I use
    Ctrl + spacebar to select entire column,
    Shift + spacebar to select entire row
    Shift + Ctrl + spacebar to select all datas in the worksheet
    Ctrl + 0 to hide a column
    Ctrl + Shift + 9 to unhide a column
    Ctrl + 2 to bold

  13. Mick Coleman says:

    Guys - you can't live without Ctrl + Z - just as you can't live life without an eraser.

  14. Tom says:

    Here are a couple that haven't been mentioned yet (I think)...

    ALT + = (Autosum)
    CTRL+A (Select data/all)
    CTRL+Space (Select column)
    SHIFT+Space (Select row)
    CTRL+SHIFT+F3 (Create Names)
    CTRL+5 (Strikethrough)
    ALT+ENTER (Mutliple rows in cell)

    I've noticed that the unhide column shortcut (CTRL+SHIFT+0) stopped working when I updated to Windows 7...anyone know why (or a workaround)?

  15. tamoghna9 says:

    All time best CTRL+SHIFT+Down arrow to select contiguous cells ( along a column)

    ALT+N+V+T to insert pivot table

    ALT+E+A+A to clear all ( very handy!!!)

    ALT+F1 to insert default chart in current sheet

    arrow key to toggle between chart elements

  16. David says:

    In addition to the obvious Control + C/X/V (Copy, Cut, and Paste), I use ALT + = to insert AutoSum. This is realy handy.

  17. Jonny says:

    Definitely Shift or Cltr + Space Bar, then Ctrl + or - to add/delete a row/column.

  18. Stružák says:

    1. Ctrl + Page Up/Down - jump to previous/next worksheet
    2. Ctrl + Home - jump to the top of the worksheet
    3. Ctrl + F3 - displays the Name manager
    4. Ctrl + 1 - format
    5. Ctrl + ; - paste today's date
    6. Ctrl + W - close active workbook
    7. Shift + F11 - adds new worksheet
    8. Shift + F3 - insert formula
    9. Ctrl + 9 - hides selected row
    10. Ctrl + 0 - hides selected column

    Btw thanks a lot for "CTRL+SHIFT+L – Turn on/ off filters", I have to learn that. 🙂

  19. Alan Murray says:

    Mine have to be:

    Ctrl + Shift + + to insert a new row/column/cell
    F9 to run formulas. Great for testing parts for a formula
    Ctrl + D to repeat the cell above

    • Felix Murillo says:

      Yeah man, control+d
      Thumbs Up for this shortcut, specially when you work with a lot of data base, just create your formulas and Bualaa. Bless people.

  20. Pam says:

    Ctrl + z = Undo is one I use a lot

  21. Les Goins says:

    Didn't see these--

    Being right-handed, using thumb and forefinger...:-)
    Cntrl + Insert for Copy
    Cntrl + Delete for Cut

    Whenever I'd go to new company, had standing invitation: if anyone knew more ways to "copy" than I, I'd buy lunch... this was always the winning #7"...:-)

    How many ways y'all know...?? Im ready to buy lunch...:-)

  22. Les Goins says:

    yep--#2 is good--- but I use Alt + D+F+F which only takes one hand and leaves right hand for coffee...:-)

    and, since I discovered "MS Flag key + M" to close all open windows and put u at Desktop...I use it multiple times a day...

  23. David says:

    F12 - Save As...

  24. Rohit1409 says:

    Yes agreed with CTRL - Z, but hey don't forget his brother CTRL - Y [Redo] 🙂

  25. hasanlianar says:

    Ctrl+Alt+V for Paste Special
    Alt DFF for Filtering
    Alt ASD for Sorting in decending order and Alt ASA for Sorting in ascending order
    Ctrl PageDown/PageUp for navigation over sheets

    etc.

  26. Arun Kumar says:

    Can someone put all these shortcut keys in photoshop and share the link so that we can put it as a wall paper.

  27. Hi,

    very useful post!

    Mine are:

    Shift-End- - selecting used fields
    F4
    CTRL-S

    Thanks for the inspiration - I love the cheat-sheet wallpaper idea.

    P.S.: Where's your flattr-button?

    Thomas

  28. Amit Dhingra says:

    Mine will be

    F11 - Create a chart
    Alt + D + F +F - To turn on/ off the auto filter

  29. Graham says:

    Really good post, lots of useful stuff here!
    One of my most used not mentioned already (i dont believe!):
    ALT + SHIFT + F1 - add new sheet to workbook

  30. Sidhesh Mangle says:

    1 of my best short cut is to Check which cells/worksheets are referenced/used in formula
    -> Ctrl + [
    Works only on the cells which has formula. it Jumps directly the dependent cells
    & Ctrl + ] works for those cells which will be used in formula (Dependents)

    • Adam Turco says:

      Thank you so much for showing me what this Ctrl Function does, i used it by accident and have struggled to figure it out. Now I'll use it all the time!!

  31. Fowmy says:

    To freeze and unfreeze panes

    ALT+W+F+F

  32. Steen says:

    A couple of my favourites I haven't seen mentioned:

    ALT E+S for paste special, use all the time for copying formats, values formulas, etc.
    ALT E+I+S useful for creating values in a series
    SHIFT ALT right arrow to group, ALT D+G+H to hide group ALT D+G+S to show group.
    ALT+TAB to navigate between open windows.

  33. Chris says:

    @Steven, thanks for the tip on using the quick access toolbar. I just rearranged mine.
    In addition to many of the shortcuts listed above I use F4 to repeat an action and CTRL+N to open a new workbook

  34. Fred says:

    @Les Goins

    I tried Crtl+Del but it only delete. it is not cut if we can't paste it back somewhere else, right?

  35. Les says:

    ...:-) Sorry, Fred (And, all others...)

    should be "SHIFT + Delete key" to "Cut"... THEN, just hit Enter, or Cntrl V to Paste

  36. bansi says:

    CTRL# to format dates!!

  37. Darshan says:

    Hi All,

    My fav or top are
    1 alt+dff for auto filter
    2 alt + es, followed by, v, c, w, etc for paste special
    3 Ctrl + navigational keys to move around in workbook
    4 ctrl + space select entire column
    5 shift + space select entire row
    the list will just go on... in a nut shell all short cut Handled by left hand and right hand for the mouse + defnitely coffe 🙂

  38. Stephen says:

    @Chris, glad i inspired.
    a couple more favourites of mine:
    Alt & ; = select visible (really useful when working with autofilter)
    Ctrl&PgUp/PgDn = move left/right on a sheet (useful when you have a lot of columns)
    Ctrl&Tab (or Ctrl&Shift&Tab)= switch between workbooks (& the other way back)
    Alt&Tab (or Alt&&Shift&Tab) = switch between applications (& the other way back).... however, if you note that it always takes you to the last used application first, then press & release both repeated will flick you back and forth between 2 applications or 2 workbooks without having to press the shift. I use this if I have to complete journals, where I have to take data from Excel and post into our accounting package.... with Ctrl&C/Ctrl&V.

  39. Vinodh Raj says:

    I use the following short cuts often
    1) Alt D,F,F - AutoFilter
    2) Ctrl+space - Select entire column
    3) Shirt+Space - Select entire row
    4) F12 - Save As
    5) Alt + F,C - Close workbook
    6) Alt + F,X - Close Excel application
    7) Ctrl + 1 - Format Cell
    8) Context menu key (next to win key) + S - Paste special
    9) F4 - Repeat the last action
    10) Ctrl + PageUp, PageDown - To browse through worksheets

  40. Clarity says:

    Everyday shortcuts for me:
    CTRL + C Copy
    CTRL + X Cut
    CTRL + V Paste
    CTRL + D Copy from above
    CTRL + Z Undo
    F4 Repeat (or scroll through referencing)
    F2 Edit cell
    CTRL Page Up/Page Dwn Move to next/previous worksheet
    CTRL + * Select current region
    CTRL + Home Go to top left cell

  41. Gojak says:

    CTRL + ; insert date - I use a lot but I like to have the keystrokes the way I want so I make tiny macros for my faves and give them my own key combos.
    CTRL SHIFT + V = Paste Values is much easier than the built in for me because it's a natural follow-on for CTRL + C.

  42. Andy says:

    I use "CTRL+[ " This takes you to the source of your formula and I use it every day.

  43. Gaylen says:

    The "CTRL+[" Is fantastic. Thanks for Sharing.

  44. Hui... says:

    @Andy & Gaylen, All
    Don't forget about Ctrl+]
    which follows a cell to it's next dependants
    Both of Ctrl+[ and Ctrl+] can be used iteratively to move up/down the dependancy tree

  45. Gojak says:

    Great ... thanks everyone for the tips.
    BTW - it's interesting how good it is for us all to be human filters. Instead of a bamboozling blur of what you could possibly use, it's: here - you'll probably like this one ... I do.

  46. Jennifer says:

    @andy and hui

    I'd not come across the CTRL + [ or ] before so thanks! I can't imagine how useful they'd have been over my career so far. Great tip

  47. Siddique Sayeed says:

    really helpful

  48. SARAN KUMAR says:

    My list is bit more..

    Ctrl+page up/down to move between tabs
    right click+p+s for paste special values (i use most of the times keyboard right click..since it is very near to fingers)
    alt+d+f+f and again alt+d+f+f to remove all the filters and add filters again
    ctrl+tab to move between open workbooks
    ofcourse F2 very commonly
    Shift+F11 very frequently to add new worksheet/tab
    alt+o+h+r and alt+o+c+a are my best shorcut keys to rename tab and auto fit the cells
    (ctrl+c/x/z/v/b/u/i/S..like everyone)

    Regards,
    Saran
    lostinexcel.blogspot.com

  49. Marek says:

    Since I use Conditional formatting very often i always use ALT+O+D

  50. Gojak says:

    Just thought of another
    for wrap and unwrap, ctrl+w and ctrl+q+w (quit wrap)
    because I do it a lot and it's too fiddly to do through menus.

  51. Akansha says:

    Hi use ALT+DFS on a daily basis- incase you have filtered a sheet against 5-7 filters and you want to remove all filters then this is the easiest.

  52. Duy Dang says:

    Ctrl + Alt + V ----> paste special

  53. Cezar says:

    Ctrl + F6 = navigate between differetn Excel files.
    Ctrl + PgUp/PgDn = navigate between sheets
    Ctrl + Home/End
    Ctrl + Arrows
    Shift + lots of keys... 

  54. Jevi says:

    ALT + ; - to copy visible cells only. I have to use it quite often and a lot of them you have already mentioned :).

    thank you for sharing.

  55. Prathap says:

    Ctrl+shift+L for Autofilter and remove the filters

  56. Anton says:

    My Favourites (which I use all the time):
    Ctrl + 1 - cell formats
    Ctrl + D - copy values Down
    Ctrl + R - copy values Right
    Alt + DFF - toggle filters on / off
    Alt + WFF - toggle freeze pane on / off
    Alt + HVF - Paste Special; Formulas
    Alt + HVV - Paste Special; Values
    Ctrl + C then Alt + HVV - removes formulas (especially handy when selecting whole sheet)
    Alt + ADFROT - Advanced Filter to get Unique values for a column, to new location
    Alt + DPF - insert quick Pivot Table

  57. Oz says:

    Hello everyone.

    I'm going to admit that I don't use keyboard shortcuts beyond Copy and Paste.

    Why not? Every software and OS has their own keyboard shortcuts and I have a fear of them overlapping.

    One keyboard shortcut might do something cool in Excel but in my music composition software that shortcut might mute the drum track. In my video editing software is might the the shortcut for opening the effects menu.

    Shortcuts are really cool but I've gone 15 years working Excel, writing VBA code, and making a living without memorizing keyboard shortcuts. Only recently have I been willing to admit that.

     

    • Hui says:

      @Oz
      Your missing out on huge increases in efficiency
      Most of the normal shortcuts are similar throughout all applications
      Ctrl C, V X - Copy, paste Cut
      Ctrl O - Open
      Ctrl S - Save
      Ctrl P - Print
      and several other of a similar nature
       
       

      • Oz du Soleil says:

        Hiu,
        I see what you're saying but still disagree. The efficiency that I'm missing out on is small. This isn't like I've declared refusal to use pivot tables.

        Shortcuts were screwing me up when I switched from Excel on my PC and Excel on my Mac. CTRL C, CTRL V are useful and universal. I do use those.

        The only thing I can see is that I'd be in trouble if I joined one of those Excel tournaments.

        One mildly humorous reaction: when you mention CTRL P for printing, I never just straight print. The printer manufacturers have things set up where you can't set a printer to default to printing in draft mode. So, I always manually go to the print menus and adjust the settings to draft mode.

        Any way ... the bottom line is that I don't work in an environment where shortcuts will make or break me.

  58. Heather says:

    I use one program that has Ctrl C and Ctrl V for inbuilt shortcuts and it drives me nuts because I use them all the time. The Shift+Ins is the one I need to use in that program.

    Another Excel one I use often is Ctrl+' to copy the data from the cell above. Several others that have already been listed. 

    My new laptop has the "F" buttons combined with other buttons. To save space on the keyboard I guess. Whenever I'm at home and hit F2 to edit it toggles my wi-fi on and off. Grrr. I have to hold the function key then hit F2 to activate the F2 function.

    So glad I found this page. Paste values only is the shortcut I was looking for. Found it. 🙂 Thank you. 

    • Kenneth says:

      lots of people at my office use a background program to assign keyboard shortcuts.  Drives me crazy because they use existing keyboard shortcuts like ctrl-a to shoot off a macro, then they don't know how to select all.  Makes training them on excel a lot more difficult.

      • Michael says:

        A good background program to assign keyboard shortcuts will allow them to be application specific so that ^a does not interfere with select all in excel. A misused background program could easily result in the situation described above.

  59. Rob says:

    Highlight a row or column and use...
    Ctrl + + and Ctrl + - to insert or delete rows or columns

    • Gojak says:

      Thanks Rob - I've got double rows of toolbars all round with hundreds of buttons, so even finding my faves like insert delete row can be hard. That'll be really handy.

  60. JWS says:

    Does anyone know how to use the ALT-key (or any other key) to access the buttons on the Quick Access Toolbar (QAT) numberd with more then 2 digits? 

    • Sheeloo says:

      Just type the numbers/letters shown.

      If it says 09 just press 0 and then 9 (of course after pressing ALT to see the shortcuts assigned to QAT)

  61. Kenneth says:

    The less-common (but already mentioned here) shortcuts I use the most are:

    Ctrl-1  (cell format)
    Ctrl-Home/End  (beginning/end)
    Ctrl-Shift-Home/End  (select from here to beginning/end)
    Ctrl-PgUp/PgDn  (move between worksheets)
    Ctrl-`  (show formulae)

     

  62. Bonnie says:

    Very helpful!  Thanks!
    A couple of my time-saver favorites:
    F2 to edit a cell (helpful if I just need to delete the last character and don't want to retype the whole thing)
    Shift-F2 to add or edit a comment (then Esc Esc to get back out of it)
    Also a big fan of the Ctrl-K hyperlink one that others have mentioned!

    • Gojak says:

      Been reading these tips for a year and a half, and always something useful.
      I use a lot of comments so Shift-F2 is helpful. Thanks.
      For F2 - edit cell there is an option to 'Directly edit in cell' which I always have on. Just double click. Not only that, but the cursor will be just where you double click, so you can start middle, end, wherever you need, without another click. 🙂

  63. Bonnie says:

    I just hate to use the mouse, so I avoid double-clicking at all costs! 🙂

    • Gojak says:

      Fair enough. I change my mind regularly about that. It's a mood thing ...or if I'm eating over the KB. Bad! hehe.

  64. Sonu Kashyap says:

    CTRL + SHIFT + & (TO CREATE OUTLINE BORDER)

  65. SMTP2GO Review says:

    I've read several excellent stuff here. Definitely price bookmarking for revisiting. I surprise how much effort you put to make this kind of magnificent informative site.

  66. Craig says:

    I often use F2 followed by F9 to convert a formula in a cell to its value. It's the keyboard equivalent to copying the cell, and using Edit > Paste Special > Values on the same cell, but much quicker.

    Application? I use this a lot if I have to manually separate items on a receipt into different categories, but I still have to take sales tax into account. I'll enter certain items from the receipt into the cell, and include a quick formula to get the sales tax for just those items. When I'm done, I strip out the formula just to be on the safe side, leaving the value of the cell.

    • Gojak says:

      Thanks Craig, unfortunately when I tried this I found another app has hijacked my F9 - what does it normally do by itself? I will have to try to wrestle it back from the app.
      BTW I use paste vals so much I made a macro so I could use ctl-sh-v. The reason this is so handy is because of course I've always done ctl-v immediately before so it's really like one quick action, with the bonus that the paste val doesn't have to be in the same cell (I mean you don't have to lose your formula) Easily my most constantly used macro. If you want to give it a try ...

      Sub PasteValues()
      '' Keyboard Shortcut: Ctrl+Shift+V
      '
      'ActiveCell.Select
      'Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
      'False, Transpose:=False
      ActiveCell.PasteSpecial Paste:=xlValues
      End Sub

    • n. says:

      does it work on a range. I tried selecting a range and then F2+F9. It changes from formula to value in just first cell.

  67. Abhishek says:

    Is there a keyboard shortcut for filtering a value after adding the filters to a data?

    • Michael says:

      It might be a bit clumsy, but just use the keyboard to navigate to the filtered cell and hit Alt + Down to bring up the filtered options.

  68. RAwat017 says:

    Mine
    CTRL+* ( it will slecte all the work area)

  69. […] Our friend Chandoo, excel dashboard guru over at chandoo.org has provided us with the 10 Excel Keyboard Shortcuts You Can’t Live Without. […]

  70. Oz du Soleil says:

    Other than CTRL C, CTRL V the only other shortcut that I can't live without: CTRL+SHIFT when moving a block of data and wanting it inserted.

    After highlighting the cells that you want to move, select CTRL+SHIFT and the cursor turns into a line that you position to the place where you want the data inserted. It's pretty cool.

  71. Shmuel says:

    1. Ctrl+Enter accepts your input and leaves the cursor in the same cell. Saves you from having to go back up to continue work on that cell e.g. copy....
    2. Select a range of cells which have the same formula or content; edit the active cell only; now press Ctrl+Enter to populate the entire range with the corrected formula/content!
    3. In the middle of a formula, if you have navigated away from the active cell (e.g. to select a large range) such that it is no longer visible, you can press Ctrl+Bckspace to jump back to the active cell whilst remaining in edit mode

  72. Seheer Qatar says:

    Am using as
    Ctrl+5 for strikethrough in the content of the cell.

  73. sonali says:

    hi..
    can any one tell me what is shortcut for copy and paste all the table as it is..i knw ctrl+c and ctl=v; bt this shortcut not paste document as it is..

  74. […] the most popular posts from earlier this semester. Re-posted from February 14, 2013 Website: http://chandoo.org/wp/2011/08/08/must-have-excel-keyboard-shortcuts/ Especially useful when analyzing data, making charts and formatting workbooks. Business and […]

  75. Don says:

    The two I use all the time are:
    Ctrl + (Control and Plus sign on numeric keypad) = Insert row or column
    Ctrl - (Control and Minus sign on numeric keypad) = Delete row or column

  76. Dina says:

    Shortcut #4 is one of my favorites, but there's an important note speficially regarding Paste Special Values - you need to hit V after alt + ES. I know you have a link to that detial amongst other options within Paste Special (all of which I use all the time and LOVE), but if you're specifically noting Paste Special Values, it should read alt + ESV.

    Thanks for all your info!

  77. […] some time getting fully on board with shortcuts. As an added resource, do check out Chandoo’s post on 10 must-have […]

  78. David says:

    Great discussions!
    I have a question for No. 8 CTRL + K for Hyperlinks.
    Is there any way you can add a Hyperlink and KEEP the existing formatting of the text in the cell?
    I would assume it might be a setting somewhere where you can define the Hyperlink Design - but that would just be another single format I think - I want it to be un-formatted if anything so it picks up the current cell format. Any ideas please? Thanks everyone!

  79. Preeti says:

    Hi Chandoo,

    I do regularly read emails received by you. I use above mentioned 10 shortcuts in daily workflow. In addition to this I use following shortcuts:
    Filter Ctrl+shift+L and open filter column alt+down arrow key.
    Visible cells Alt+:
    Format Painter Copy then go to the cell which you want format right click key+S+T

  80. ce site says:

    It's an amazing article designed for all the internet viewers; they will take
    advantage from it I am sure.

  81. Liran says:

    Amazing article,
    The only thing i didnt know is ctrl+shift+l for filters and I use them alot,
    so thanks!

    And my contribution is:

    alt+h+9 > remove decimal place
    alt+h+0 > add decimal place.

    Very useful when using ctrl+shift+1 for number formatting and immediately hitting alt+h+9 twice to remove decimal places.

    Cheers

  82. Jodi says:

    I am using AutoFilter and I have a large picklist of values available to me. I want to select about the first 50% of the items. Is there any shortcut to grab them? (i.e. Select 1st item, hold shift, select last item --which does NOT work).

    Thanks!

  83. ashish says:

    how can i "clear format" from a part of selection in excel by keyboard.
    i need keyboard shortcut to clear format of any cell.
    reply me
    ashish gupta
    email: ashish99b@gmail.com

  84. Debaraj Nayak says:

    Hiii...

    Previous is wrong ...

    Clear Format:-ALT+H+L+C+S

  85. Sheeloo says:

    I think 7 should be "CTRL+F3 – Show Names"

  86. zan says:

    cool, thanks bro!

  87. Sri says:

    Chandoo, Greetings! Nice tips. Like it & use ful. To make it credible and professional, please publish without spelling, grammatical mistakes, if you may. Thank you.

  88. Bonnie says:

    Sri: The spelling and grammar are pretty accurate, if you're referring to the original article. If there is a specific spot that you feel is unclear due to grammar issues, you'll want to provide more details on what is confusing you versus just saying "please publish without spelling, grammatical mistakes".

    Chandoo doesn't have control over the grammar or spelling in users' responses such as yours, of course; if that's what you're addressing, you should address your comment to the user who posted the item which you feel has poor grammar. (You would generally only do so, though, if it's that you need something clarified because of the grammar issue.)

    I'd like to note that your post isn't actually the best in terms of spelling and grammar. For example, you capitalized "greetings" even though it's in the middle of a sentence, and you put an unnecessary space in "useful". If you're particularly bothered by poor grammar, you'll want to proofread your own posts a little more carefully! 😉

  89. Michelle says:

    This is awesome, totally on nerd overload. Here's my fav:

    Go to - special - blanks
    Then Ctrl, up arrow, =, enter

    This fills in all the blanks!

    Thanks fellow geeks for all the sweet tips

  90. Sukarnen says:

    Guys,

    CTRL+SHIFT+1 always give us number format with 2 decimals. Is there any Excel shortcut that could give us number format with 0 decimal, other than making our own macro?

    Thanks

  91. Gyan Chand says:

    these shortcut keys are really helpful in smart work & fast work

  92. piecevcake says:

    Wonderful tips, I have made my own list.
    Another good one is CTRL+F10, toggles maximise/restore window in workspace. (So you can find the scrollbars, and switch books by clicking another one)

  93. Julie Falkman says:

    I use CTRL-Z to repeat the last command. Handy for inserting multiple rows or columns.

  94. […] Here are some great Excel shortcuts copied from http://chandoo.org/wp/2011/08/08/must-have-excel-keyboard-shortcuts […]

  95. MicroSoft Office Support says:

    I use filters to do an ad-hoc analysis of my data. So, Once I set a couple of filters.

  96. Jenny says:

    Ctrl ; to enter today's date

    Ctrl ' to enter the same data as above

    Ctrl home to go to the top

Leave a Reply