15 Excel Advanced Tips and Tricks To Save Time and Get Known
15 Excel Advanced Tips and Tricks To Save Time and Get Known
Speaking
Books
Courses
Blog
Guides
C
Have you been looking for Excel Advanced Tips and Tricks to make you faster and sav
Look no further: in this article you will see 15 tips and tricks in Excel to save time and get
Excel ninja. So, why wait? Let’s get started!
1. Keyboard Shortcuts
You will save tons of time and make moves like a ninja once you master the keyboard sh
favorites:
4. |Ctrl + End|: will take you to the last cell of your data
5. |Ctrl + Home|: will take you to the first cell of your data
6. |Ctrl + Up Arrow|: will take you to the first cell of your active column
https://nandeshwar.info/excel-advanced-tips-tricks/ 1/16
01/01/22, 22:59 15 Excel Advanced Tips and Tricks to Save Time and Get Known by Peers as an Excel Master - nandeshwar.info
7. |Ctrl + Down Arrow|: will take you to the last cell of your active column
1. Hover to the bottom-right corner of the cell with the formula (you will notice that the cursor has tur
1. Go to the first cell that you would like to copy or fill in other cells
2. In the name box, type in the address of the last cell of the range, where you want to fill data or fo
You can see the name box highlighted in the red box. You will find this box right next to th
To quickly total a column or a row, in the last cell, hit |Alt + =| (equal to sign).
1. Select the range of the data that you want de-duplicated (usually, |Ctrl + A| works)
5. Hit OK
=TEXT(A1,REPT("0",10))
https://nandeshwar.info/excel-advanced-tips-tricks/ 3/16
01/01/22, 22:59 15 Excel Advanced Tips and Tricks to Save Time and Get Known by Peers as an Excel Master - nandeshwar.info
3. Select the row(s) you want to repeat at the top in Rows to Repeat at Top box
3. Select the ranges to give names from usually Top Row works well as this row is the header row
9 Copy Values
To speed up copying only values and not the formulas, use this keyboard shortcut seque
1. |Ctrl + A| to select the whole range of data (or select your range with the help of the mouse)
https://nandeshwar.info/excel-advanced-tips-tricks/ 4/16
01/01/22, 22:59 15 Excel Advanced Tips and Tricks to Save Time and Get Known by Peers as an Excel Master - nandeshwar.info
3. in your destination, press |Alt + E|, then |S|, then |V|, and then |Enter|
After you practice this a couple of times, when you do this in front of your peers, without a
your new ninja abilities.
7. Click on Import
8. Click on OK
Only a ninja can import raw tables from the web to the Excel files!
https://nandeshwar.info/excel-advanced-tips-tricks/ 5/16
01/01/22, 22:59 15 Excel Advanced Tips and Tricks to Save Time and Get Known by Peers as an Excel Master - nandeshwar.info
13 Quick Aggregation
Quick Tool provide aggregate statistics, such as Average, Count, Numerical Count, Ma
from a selected range without entering any formula. To show these statistics in the bottom
toolbar and choose the desired statistic.
In the above example, our lookup value is the state code and table array is a table with the state
The column index is the column that we want to return after matching a code
The range lookup is an argument to search for exact matches (1 or TRUE) or approximate match
Let’s say, your customer IDs in Column A, their mailing state code in Column B, and in C
state spelled out. To do so, follow these steps:
https://nandeshwar.info/excel-advanced-tips-tricks/ 6/16
01/01/22, 22:59 15 Excel Advanced Tips and Tricks to Save Time and Get Known by Peers as an Excel Master - nandeshwar.info
16 Text to Columns
Did you have a lots of data in a text document and you wish you could easily copy that to
Word document with some bullet points, like this:
Vendor A: 5,000
Vendor X: 9,900
Vendor D: 10,000
Vendor Z: 3,500
To copy and keep the desired formatting for easier manipulation, follow these steps:
https://nandeshwar.info/excel-advanced-tips-tricks/ 7/16
01/01/22, 22:59 15 Excel Advanced Tips and Tricks to Save Time and Get Known by Peers as an Excel Master - nandeshwar.info
2. Paste the data in a blank Excel spreadsheet (say starting from cell |A1|)
3. Select column A
7. In Step 2, check the “Other” box and enter |:| (colon) as the delimiter.
The text will be separated by your delimiter and data will be in separate columns
So, let's say column A has first names, column B middle initials, and column C last name
be surrounded by double quotes. You could escape the quotes by surrounding them with
will look like this:
=A2&""""&B2&""""&C2
It gets ugly soon. If you want to add spaces or any other characters, the formula become
better option is using the CHAR formula. The CHAR formula shows a character for a cod
ASCII tables to find out the character you want to concatenate. The ASCII number of 34
(32 is a space).
https://nandeshwar.info/excel-advanced-tips-tricks/ 8/16
01/01/22, 22:59 15 Excel Advanced Tips and Tricks to Save Time and Get Known by Peers as an Excel Master - nandeshwar.info
=A2&CHAR(34)&B2&CHAR(34)&C2
This doesn't have spaces though, so we will add a space using CHAR(32):
=A2&CHAR(32)&CHAR(34)&B2&CHAR(34)&CHAR(32)&C2
Let's say you have some text values in A1:A10 range. In this example, we have city nam
some cities for this example.
=SUM(1/COUNTIF(A1:A10,A1:A10))
But instead of hitting the regular enter key, we use Command + Shift + Enter on a Mac or
Windows. By doing so, we create an array formula. You should see the number 7 as the
https://nandeshwar.info/excel-advanced-tips-tricks/ 9/16
01/01/22, 22:59 15 Excel Advanced Tips and Tricks to Save Time and Get Known by Peers as an Excel Master - nandeshwar.info
A fixed method
Let's say our data is in the range A1 to A15. We want to count how many rows have valu
In an empty cell, as shown in the image below, we enter this formula:
=COUNTIFS(A1:A15,">=50",A1:A15,"<=80")
But now if you want to count something different, you will have to edit the formula. A bett
formula.
https://nandeshwar.info/excel-advanced-tips-tricks/ 10/16
01/01/22, 22:59 15 Excel Advanced Tips and Tricks to Save Time and Get Known by Peers as an Excel Master - nandeshwar.info
A dynamic method
Let's say we store our from and to values in cells D2 and D3. Now, we can enter this form
between this range:
COUNTIFS(A1:A15,">="&D2,A1:A15,"<="&D3)
Now, you can easily change the values in those cells and our count will get updated. For
range to 10 and 40:
https://nandeshwar.info/excel-advanced-tips-tricks/ 11/16
01/01/22, 22:59 15 Excel Advanced Tips and Tricks to Save Time and Get Known by Peers as an Excel Master - nandeshwar.info
I use Excel all the time to help me get things done quickly. It includes creating data and c
complicated SQL logic. Watch this short GIF to see how to create a CASE WHEN statem
https://nandeshwar.info/excel-advanced-tips-tricks/ 12/16
01/01/22, 22:59 15 Excel Advanced Tips and Tricks to Save Time and Get Known by Peers as an Excel Master - nandeshwar.info
Take your Excel game to the next level with these books
https://nandeshwar.info/excel-advanced-tips-tricks/ 13/16
01/01/22, 22:59 15 Excel Advanced Tips and Tricks to Save Time and Get Known by Peers as an Excel Master - nandeshwar.info
919 Reviews
673 Reviews
Wiley
Walkenbach, John (Author)
English (Publication Language)
1152 Pages - 10/26/2015 (Publication Date) - Wiley (Publisher)
293 Reviews
Microsoft Press
Winston, Wayne (Author)
English (Publication Language)
864 Pages - 12/09/2016 (Publication Date) - Microsoft Press (Publisher)
212 Reviews
https://nandeshwar.info/excel-advanced-tips-tricks/ 14/16
01/01/22, 22:59 15 Excel Advanced Tips and Tricks to Save Time and Get Known by Peers as an Excel Master - nandeshwar.info
Microsoft Press
Frye, Curtis (Author)
English (Publication Language)
544 Pages - 10/08/2015 (Publication Date) - Microsoft Press (Publisher)
192 Reviews
Wiley
Alexander, Michael (Author)
English (Publication Language)
768 Pages - 02/08/2016 (Publication Date) - John Wiley & Sons (Publisher)
293 Reviews
103 Reviews
https://nandeshwar.info/excel-advanced-tips-tricks/ 15/16
01/01/22, 22:59 15 Excel Advanced Tips and Tricks to Save Time and Get Known by Peers as an Excel Master - nandeshwar.info
Last update on 2021-12-20 / Affiliate links / Images from Amazon Product Advertising API
Speaking
Books
Courses
Blog
Guides
Contact
Write for us
Privacy
Copyright text 2020 by nandeshwar.info. Disclaimer: we use affiliate links including Amazon's.
https://nandeshwar.info/excel-advanced-tips-tricks/ 16/16