Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have a spreadsheet and I have highlighted every other row. When I delete
or add a row, the highlighting sequence becomes messed up. I then have to go back and manually highlight every other row. Is there a way to format the spreadsheet so that when I add or delete a row, the spreadsheet automatically keeps the "every other row highlighted" sequence in effect? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() You can use conditional formatting to and specify the formula: =MOD(ROW(),2)=0 You would then have the highlight color on all even numbered rows. "Ibbuggin" wrote: I have a spreadsheet and I have highlighted every other row. When I delete or add a row, the highlighting sequence becomes messed up. I then have to go back and manually highlight every other row. Is there a way to format the spreadsheet so that when I add or delete a row, the spreadsheet automatically keeps the "every other row highlighted" sequence in effect? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Select a gaggle of rows.
FormatConditional FormattingFormula is: =MOD(ROW(),2)=1 Pick a color and you're good to go. Note: this will mess up if you are using a Filter. For that you need a different Formula is: =MOD(SUBTOTAL(3,$A$1:$A2),2) Gord Dibben MS Excel MVP On Mon, 12 Mar 2007 10:03:31 -0700, Ibbuggin wrote: I have a spreadsheet and I have highlighted every other row. When I delete or add a row, the highlighting sequence becomes messed up. I then have to go back and manually highlight every other row. Is there a way to format the spreadsheet so that when I add or delete a row, the spreadsheet automatically keeps the "every other row highlighted" sequence in effect? |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks for the help. I am selecting the rows I want but when I enter the
formula all I get is a "FALSE" in A1. What am I doing wrong? "Gord Dibben" wrote: Select a gaggle of rows. FormatConditional FormattingFormula is: =MOD(ROW(),2)=1 Pick a color and you're good to go. Note: this will mess up if you are using a Filter. For that you need a different Formula is: =MOD(SUBTOTAL(3,$A$1:$A2),2) Gord Dibben MS Excel MVP On Mon, 12 Mar 2007 10:03:31 -0700, Ibbuggin wrote: I have a spreadsheet and I have highlighted every other row. When I delete or add a row, the highlighting sequence becomes messed up. I then have to go back and manually highlight every other row. Is there a way to format the spreadsheet so that when I add or delete a row, the spreadsheet automatically keeps the "every other row highlighted" sequence in effect? |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks, I still must be doing something wrong. I select the rows I want and
when I enter the formula all I get is a "false" in row 1. Do you know what I am doing wrong? "Gord Dibben" wrote: Select a gaggle of rows. FormatConditional FormattingFormula is: =MOD(ROW(),2)=1 Pick a color and you're good to go. Note: this will mess up if you are using a Filter. For that you need a different Formula is: =MOD(SUBTOTAL(3,$A$1:$A2),2) Gord Dibben MS Excel MVP On Mon, 12 Mar 2007 10:03:31 -0700, Ibbuggin wrote: I have a spreadsheet and I have highlighted every other row. When I delete or add a row, the highlighting sequence becomes messed up. I then have to go back and manually highlight every other row. Is there a way to format the spreadsheet so that when I add or delete a row, the spreadsheet automatically keeps the "every other row highlighted" sequence in effect? |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You don't type the formula in the cell.
You select the cell(s) and then Format|Conditional Formatting|Formula is (Format is on the worksheet menu bar -- at the top.) Ibbuggin wrote: Thanks, I still must be doing something wrong. I select the rows I want and when I enter the formula all I get is a "false" in row 1. Do you know what I am doing wrong? "Gord Dibben" wrote: Select a gaggle of rows. FormatConditional FormattingFormula is: =MOD(ROW(),2)=1 Pick a color and you're good to go. Note: this will mess up if you are using a Filter. For that you need a different Formula is: =MOD(SUBTOTAL(3,$A$1:$A2),2) Gord Dibben MS Excel MVP On Mon, 12 Mar 2007 10:03:31 -0700, Ibbuggin wrote: I have a spreadsheet and I have highlighted every other row. When I delete or add a row, the highlighting sequence becomes messed up. I then have to go back and manually highlight every other row. Is there a way to format the spreadsheet so that when I add or delete a row, the spreadsheet automatically keeps the "every other row highlighted" sequence in effect? -- Dave Peterson |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thank you. That worked, every other row is highlighted however, when I
insert a new row the sequence gets out of whack in every row below the newly inserted row (they all become highlighted). I am trying to format the spreadsheet to automatically adjust the highlighted rows to every other one when I add or delete an existing row. Is that possible? "Dave Peterson" wrote: You don't type the formula in the cell. You select the cell(s) and then Format|Conditional Formatting|Formula is (Format is on the worksheet menu bar -- at the top.) Ibbuggin wrote: Thanks, I still must be doing something wrong. I select the rows I want and when I enter the formula all I get is a "false" in row 1. Do you know what I am doing wrong? "Gord Dibben" wrote: Select a gaggle of rows. FormatConditional FormattingFormula is: =MOD(ROW(),2)=1 Pick a color and you're good to go. Note: this will mess up if you are using a Filter. For that you need a different Formula is: =MOD(SUBTOTAL(3,$A$1:$A2),2) Gord Dibben MS Excel MVP On Mon, 12 Mar 2007 10:03:31 -0700, Ibbuggin wrote: I have a spreadsheet and I have highlighted every other row. When I delete or add a row, the highlighting sequence becomes messed up. I then have to go back and manually highlight every other row. Is there a way to format the spreadsheet so that when I add or delete a row, the spreadsheet automatically keeps the "every other row highlighted" sequence in effect? -- Dave Peterson |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks to everyone for the help. Finally got it to work. I was working on
an existing spreadsheet with every other row already highlighted. Discovered that I had to clear all highlights, then choose the cells again and apply the formula. Once I cleared the original highlights and applied the formula, it worked perfectly. Thanks again. "Dave Peterson" wrote: You don't type the formula in the cell. You select the cell(s) and then Format|Conditional Formatting|Formula is (Format is on the worksheet menu bar -- at the top.) Ibbuggin wrote: Thanks, I still must be doing something wrong. I select the rows I want and when I enter the formula all I get is a "false" in row 1. Do you know what I am doing wrong? "Gord Dibben" wrote: Select a gaggle of rows. FormatConditional FormattingFormula is: =MOD(ROW(),2)=1 Pick a color and you're good to go. Note: this will mess up if you are using a Filter. For that you need a different Formula is: =MOD(SUBTOTAL(3,$A$1:$A2),2) Gord Dibben MS Excel MVP On Mon, 12 Mar 2007 10:03:31 -0700, Ibbuggin wrote: I have a spreadsheet and I have highlighted every other row. When I delete or add a row, the highlighting sequence becomes messed up. I then have to go back and manually highlight every other row. Is there a way to format the spreadsheet so that when I add or delete a row, the spreadsheet automatically keeps the "every other row highlighted" sequence in effect? -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Conditional Formatting Highlights | Excel Discussion (Misc queries) | |||
Right clicked range highlights in Excel would add the "$" to func | Excel Worksheet Functions | |||
cursor highlights everything | Excel Discussion (Misc queries) | |||
Printing Highlights? | Excel Discussion (Misc queries) | |||
IN EXCEL, WHEN I CLICK ONA SINGLE CELL It HIGHLIGHTS WHOLE Page | Excel Discussion (Misc queries) |