Link to home
Start Free TrialLog in
Avatar of jakester69
jakester69Flag for Canada

asked on

MS excel conditional formatting

I have a data set that I used the sub-total function to sum a group of numbers.  That works fine but, I want to change the font of the rows where the totals are.  I use the conditional formatting function->new rule->use formula to determine which cells to format.
The column that I totaled is F and in the cell at the bottom of the grouping it say "1253 Total"  and the rest of the row shows the summary of "1253"  I use the formula =RIGHT($F1,5)="Total"
This usually highlights the a row but it's not always the right row, sometimes I need to adjust the formula to =RIGHT($F2,5)="Total or something like that until the right row is formatted.  Can someone explain why the $F1 seems to be that way or is the a help video that I can't find out there?
Avatar of Phillip Burton
Phillip Burton

Here's one suggestion - It depends which cell you have focused on before you do the conditional formatting.

Let's say I've got three cells, A4, A5 and A6, and the conditional formatting is =$a4="a"

If I select A4 and select down to A6, then A4 is the cell in white, and the others are in dark. Then the conditional formatting of $a4 is being put into the cell A4, the same row.So the conditional formatting in cell a4 is =$a4="a".

If however I select A6 and select up to A4, then A6 is the cell in white, and the others are in dark. Then the conditional formatting of $a4 is being put into cell A6, i.e. two rows adrift. So the conditional formatting in cell a4 is =$a2="a".
Avatar of Rgonzo1971
Hi,

it depends of the Applies to  To Range

see example in B5 and C5

Regards
EE20141204.xlsx
In addition to the comments of the two above, I might be making 2 + 2 = 5 but with the wording in the question, there area  couple of disparities.

Your initial formula says $F1 so would assume that the Subtotal summary row is above the detail data, it can't be below because this is row 1. This option (Summary above details) can be achieved depending on your Subtotal function settings. However, you then say that the cell at the bottom of the grouping says "1253 Total". This would suggest that the Summary row is at the bottom of each group and not at the top, unless this is now the subtotal heading for the group below.

You have subtotalled column F. Are the values and the SUBTOTAL calculation actually in column F? The heading for the subtotal for a particular group is normally then in one column to the left of the column subtotalled so your RIGHT function needs to look at column E.

Thanks
Rob H
When you are defining format for the first time, you need to pay attention to the "active cell".
If "A1:E10" is selected (It will be applied range) and "B3" is active and you write "=C3" in your formula, it will mean to check 1 cell to the right for each cell in applied range.
When you done with defining, excel converts your formula for "first cell" of applied range.
So your formula will be "=B1" and this will be applied to all cells in applied range.

It is better to activate the "first cell" of applied range when defining conditional format and build formula for this cell.

Excel relatively adapts your formula for each cell in conditional format applied range. (Like copying formula in one cell to another cell)

You may give absolute references in your formulas using $ character before row number, column name or both.
You may look here for relative and absolute cell references.
Avatar of jakester69

ASKER

OK, thanks everyone for your help.  I kind of understand what everyone is referring to but I still don't quite understand.  I attached a zip file of the table I'm working on.  As you can see, the proper fields are formatted but one of the formulas are =RIGHT($E2,5)="Total" I understand what E represents (column) but why the 2?  if I put a 1 there I get a totally unexpected result.  I like this conditional formatting and it can be really useful for me but I need to explain it to others so I want to understand it.
Sorry, no attachment! :-)

The formula shown is using an absolute reference on column E (using the dollar sign in front) and a relative reference on the row.  This conditional formula starts in row 2, hence the "2" here is ensuring that one is testing values on the same row as where the format is applied.
Here is the attachment
DataTable.xlsx
ASKER CERTIFIED SOLUTION
Avatar of Hakan Yılmaz
Hakan Yılmaz
Flag of Türkiye image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks, I now understand how it works.  You even answered my next question which was why the formula changes  "=RIGHT($E2,5)="Total" formula becomes, =RIGHT($E95,5)="Total".