Ask Sawal

Discussion Forum
Notification Icon1
Write Answer Icon
Add Question Icon

Rupam Babasahed




Posted Answers



Answer


As its vast marble surfaces fall into shadow or reflect the sun, its colour changes, from soft grey and yellow to pearly cream and dazzling white; it's well worth


Answer is posted for the following question.

What is the beauty of taj mahal?

Answer


Yoga and the Moon Cycles. The Ashtanga yoga tradition recommends honoring this natural moon cycle by abstaining from practice on the days of the full and new


Answer is posted for the following question.

What is a moon cycle in yoga?

Answer


Dead patients undergoing kidney dialysis, ghost patients getting cancer treatments and fake members are just some of the fraudulent schemes


Answer is posted for the following question.

What is ghost kidney treatment?

Answer


The PGP/MBA graduates are offered various managerial roles in different sectors and domains. Function-wise most of the offers are made for


Answer is posted for the following question.

What after mba from iim?

Answer


There are many different variations on this method; two colors, headings only, cell only etc.  We’ll also explain the workings so you can change the highlighting to suit yourself.

Large Excel tables can be hard to navigate and ensure you’ve selected the right cell.  That’s especially important when you’re filling in the table gradually and in a random order – choosing the right cell is important.

We used this trick for a Trivia Quiz worksheet. Managing the scores with all the noise and confusion of an event can be difficult.  This highlighting trick makes entering team scores more reliable.

Any modern Excel for Windows or Mac can do this.  The Cell() function is essential and was introduced in Excel 2007 for Windows and Excel 2011 for Mac.

Before we start, a little warning. This trick has several steps and can be frustrating at first.  Once you get it working, it’s great but that first try can drive you a little crazy. We’ve included some debugging tricks below.

Dynamic highlighting by selection has two ingredients.  Conditional formatting which uses the selected cell location as a condition plus a little VBA to make Excel do some extra work.

The main trick is to make Excel recalculate the worksheet whenever you switch to another cell. Normally, Excel only recalculates when there’s a change in a cell or data refresh.

To do that, use a little VBA code to do something each time the selection changes.  Excel has an in-built event for this called Worksheet_SelectionChange all we have to do is give that event something to do.

This code goes into each worksheet that you want it to work in.

The code invokes the SelectionChange event then forces Excel to recalculate the worksheet.  We don’t want that to happen when we’re cut/copy/pasting so the IF statement stops that.

This little chunk of code has other uses, as you’ll see in the Headings of a selected cell option below.

Forcing Excel to recalculate the worksheet for every cell movement will slow down the entire workbook.  That’s true but probably not noticeable except for really large or complex worksheets.  Modern Excel is pretty smart about figuring which cells to re-calc when a manual Calculate is done.

Give the highlighting a try, if it becomes a problem, just remove the VBA code or comment out the Application.Calculate line.

The workbook will have to be saved in a macro-enabled .XLSM format which can be an issue in some organizations.

We’ve talked about Excel Conditional Formatting many times before. Usually it’s to change the look of a cell based on the value in that cell.

This time we’ll get sneaky.  We’ll give Conditional Formatting a little formula that compares the currently selected cell location (row and column) with the cell to be formatted.  If the cell is in the same row or column as the cell you’ve clicked in, the Conditional Formatting will be done.   It’s an extension of an Office Watch trick from 2015 applying conditional formatting to other cells.

You can just copy/paste the formula below but if you understand how it works, it opens up a lot more possibilities.  The alternatives we’ll look at below are mostly about changing this formula:

It’s not that scary, let’s break it down:

Compares the column number of selected cell CELL(“col”) with the column of the cell to be formatted COLUMN(), if they’re the same the result is TRUE

Compares the row number of selected cell CELL(“row”)  with the row number of the cell to be formatted ROW(), if they’re the same the result is TRUE

Each of those tests returns a TRUE or FALSE, we want the formatting to apply when either case is True so both tests are wrapped in the OR function.

(that’s why the VBA code is necessary, to make Excel recalculate the CELL() functions each time the selection changes).

Now let’s put all this together to make the row and column highlighting from the first image in this article.  If you’re trying this for the first time, try this example first because it’s the basis for all the later variations.  Get this one working and the rest will be a doddle.

Select the entire grid or table then Home | Conditional Formatting | New Rule.

Choose ‘Use a formula to determine which cells to format’.

Paste in the formula detailed above:

Then click Format to select the look you want.  The Fill tab changes the cell background color.

Border is also available to change the edges of the cell, there’s an example of that below.

Maybe you’d prefer the row and column to have different colors or formatting.

That’s just a variation with two conditional formatting rules, one for rows, the other for columns.

Both rules apply to the same range, grid or table.

Above we explained how the condition formula works, here are the two conditions:

As you can see, it’s the two tests without the OR() test to combine them.

It’s likely that you or users of the worksheet will ask for changes to the dynamic highlighting.  Maybe a change of color or highlighting just rows etc.  To make future changes easier, we suggest always setting two conditional formats (one for rows, one for columns). Even if both use the same formatting as in this example.

If the user/client wants a change, all you have to do is alter the formatting. For example, for row highlighting only, just clear the formatting options for the =Cell(“col”) … line.

Don’t delete the conditional formatting rule, you may need it again later!

The above column and row formatting options are commonly demonstrated because they are obvious and showy.  In many situations something more subtle is better.

The formatting for row and columns, shown above, is also the way to highlight just a row or column.

Use either the row or column conditional formatting.

(we left the column conditional formatting in case we change our mind.)

The formatting is a two-tone gradient available at Format | Fill | Fill Effects | Two colors

You might think the full colored lines are too much, how about highlighting just the row & column headings (Row 1 and Column A).

Change the ‘Applies to… ‘ to just the first row  ($A$1:$I$1) or column ($A$1:$A$13).

The above example has few extra tricks, because we can’t help ourselves and have little fits of enthusiasm.

On the right side you’ll see Totals and Rank columns with top/bottom border edge formatting, just to show that alternative. That’s one of the options available on the Format Cells | Border tab.

Instead of color fill, try horizontal and vertical borders to show the selected row/ column.

The conditional format only applies to those two columns.

The second trick is below the table and deserves an article of its own.  It’s a summary of the selected student (row) that changes according to the cell you’re in.

It’s an example of what’s possible once Excel is recalculating for each selection change. You can make more responsive and informative worksheets.

Do it with the INDIRECT() function which gets the value of another cell.

Plus our old friend Cell() to get the selected cells row or column position.

Even more subtle is highlighting just the selected cell. Excel does that automatically with a border around the selection but you can do more than that with conditional formatting. Here the selected cell is bold with yellow fill.

Do it with a simple variation on the very first formula at the start of this article.

Instead of OR() use AND() … meaning that both conditions have to be TRUE.

Doesn’t work for you?  Try these suggestions to narrow down the problem.

Make sure the VBA code is working by adding a message box to the function eg:

If the function is working in the workbook then every cell selection will bring up a message.

If the message isn’t appearing then you know the function isn’t working.  Most likely the code is not in the correct worksheet.

Check the Applies to conditional formatting and that you’re looking at the right part of the workbook.

Show formatting rules for:  make sure it’s This worksheet or This Table.

Applies to: check the correct range is selected.


Answer is posted for the following question.

How to highlight heading in excel?

Answer


What is a Medial Branch Block? A medial [MEE-dee-uhl] branch block is a type of spinal injection to temporarily block the pain signals coming from the medial


Answer is posted for the following question.

What is mbb treatment?

Answer


How does private health insurance work ? Also known as private medical insurance (PMI), it pays for private medical treatment, tests and surgery if you are ill


Answer is posted for the following question.

How does a private healthcare work?

Answer


Disk temperatures if there's a running hddtemp daemon. *: Multiple monitors managed by a single process to reduce system load. *: A timer


Answer is posted for the following question.

How to run gkrellm?

Answer


Dumbarton Rock, a volcanic plug, is said to resemble an elephant The team's nickname 'The Sons' is derived from the phrase 'Sons of The Rock', a term used for


Answer is posted for the following question.

What is dumbarton fc nickname?

Answer


The Crunch gym in Santa Rosa, CA fuses fitness and fun with certified personal trainers, ... you'll find everything here to look & feel your best


Answer is posted for the following question.

What is the best gym in santa rosa?

Answer


We issue a Permanent Resident Card ( Green Card ) to all permanent residents as proof that Removing Conditions on Your Two - Year Green Card


Answer is posted for the following question.

Why is my green card only valid for 2 years?

Answer


Krishna Enterprieses Uy mixer grinder

Bengaluru, Karnataka


Answer is posted for the following question.

Sir / Madam which is the best Mixer Grinder in Bengaluru, Karnataka?


Wait...