In this week’s roundup, make VLOOKUP faster, use keyboard shortcuts, run macros when Excel is closed, and many more tips.
If you read or wrote any other interesting Excel articles recently, or have upcoming Excel events, please let me know. Thanks!
Excel tips and tutorials
In this week’s roundup, make VLOOKUP faster, use keyboard shortcuts, run macros when Excel is closed, and many more tips.
If you read or wrote any other interesting Excel articles recently, or have upcoming Excel events, please let me know. Thanks!
There are a few upcoming Excel-related events that you might be interested in. These are online sessions, and all of them are free.
You can read the details below, and watch for the availability dates and deadlines.
Continue reading “Upcoming Free Online Events for Excel Fans”
IN this week’s roundup, you’ll learn about arrays and array formulas, see how to speed up macros, and many more tips.
If you read or wrote any other interesting Excel articles recently, or have upcoming Excel events, please let me know. Thanks!
Did you know that Excel limits the number of numbers that appear in a cell, in General format? I discovered that limitation this week, while updating my page on rounding functions in Excel.
Have you run into this limit? It was something that I hadn’t noticed before, and there doesn’t seem to be any setting to adjust this.
This week, attend a free dashboard webinar, find data with VLOOKUP, create a funnel chart, and many more tips.
If you read or wrote any other interesting Excel articles recently, or have upcoming Excel events, please let me know. Thanks!
If you’re working on an Excel project with a client, or other employees in your company, how do you keep track of everything that needs to be done? If emails are flying back and forth, with questions, and comments, and specification changes, it’s easy for things to slip through the cracks. Then, 5 minutes before the deadline, someone realizes that a key piece is missing!
Nobody wants that to happen, so it helps to have a system for keeping track of everything that has to be done.
For projects that require more than a couple of simple changes, I usually create a task list in Excel. It’s nothing too fancy – just a list of what needs to be done, broken into steps.
For example,

You can see a few more columns, in the next screen shot.

For other projects, you might need additional information, such as:
What else would you need to record for each task?
To make it easier to enter the tasks, I use data validation to create drop down lists in some columns.

The source lists are stored on a separate sheet, in named Excel Tables.

At the top of the task sheet, there are cells that summarize the estimated and actual task times. That gives you a quick overview, while you enter the tasks, or update them with actual times.
The times are entered as minutes, so the formula sums all the times, then divides by 60
=SUM(tblTasks[Time Est Minutes])/60

After the tasks are entered, you can create a pivot table or two, to show the estimated and actual times. The times can be summarized per person, or per task category, or any other grouping that you’d like.

I don’t like setting up shared Excel workbooks, but I’ve found that it works well to upload a file to Microsoft’s OneDrive site, and everyone can edit the task list there, using Excel Online. The only strange thing that I’ve noticed is that after you select from a drop down list, the cell below is selected, instead of staying in the same cell.
After you upload the file, use the Share options, to send a link to all the interested parties. I save the link as a bookmark in my browser, so it’s easy to get back to the file again.
You can download a copy of your task file, after you make changes, to store as a local backup. Or, go back to look at previous versions of the file.

You can download a copy of my project task tracker file, from my Contextures website. On the Sample Files page, go to the Data Validation section, and look for DV0069 – Excel Project Task Tracker.
The zipped file is in xlsx format, and does not contain macros.
_________________

This week, see how to add a table of contents in a workbook, customize the right-click menu, pick a random winner, and many more tips.
If you read or wrote any other interesting Excel articles recently, or have upcoming Excel events, please let me know. Thanks!
When you right-click in Excel, a pop-up menu appears, with a list of commands that you can use. The list changes, depending on where you’ve clicked, so it’s called a “Context Menu”.
But, even though those pop-up menus are helpful, they might not have all the commands that you like to use. Or, the commands might be there, but buried a few layers deep in the sub-menus.
Maybe you’d like to add a few commands, but there isn’t a built-in way to customize those menus, like there is for the Ribbon and Quick Access Toolbar (QAT).
This week, see how to highlight items in a dashboard, change the background colour in a chart, use Excel for project management, and many more tips.
If you read or wrote any other interesting Excel articles recently, or have upcoming Excel events, please let me know. Thanks!
There are lots of different ways to count things in Excel – maybe you need to count the numbers in a column, or all the data, or just the blank cells. Fortunately, there is a function for each of those:
For example, to count the blank cells in the range A1:A5, use the following formula in cell A7:
=COUNTBLANK(A1:A5)

If you have more complicated things that you need to count, there are other functions to do the job:
For example, to count only the visible numbers, after filtering and/or manually hiding rows in a list, use a SUBTOTAL formula. This example uses 102 as the second argument, so it counts numbers only, in the visible rows (filtered or manually hidden).
=SUBTOTAL(102,B2:B10)
In the screen shot below, there are 5 visible numbers in cells B2:B10, and that is the result in cell B15, where the SUBTOTAL function is used.
The COUNT function, used in cell B12 in the screen shot below, returns 8 – it counts numbers in the hidden rows too.

To see a quick overview of 7 ways to count in Excel, you can watch this short slide show. It also contains a video on using the COUNTIFS function. You can see more examples on my Excel Count Functions page, and download the sample file.
This video shows how to use the COUNTIF function to count cells that
contain a specific string of text, such as “Pen”.
_____________________________