Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
i have done a search and if the data was a match i gave a "1" and if not a
"0". Now is there a way to highlight an entire row of coresponding data if that one column ="1" -- |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Using Conditional Format
Format/conditional format/ cell value = 1, selecting the format you want. best Wishes Sreedhar "bkunes" wrote: i have done a search and if the data was a match i gave a "1" and if not a "0". Now is there a way to highlight an entire row of coresponding data if that one column ="1" -- |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
this works for one cell but i want to highlight that cell and the entire row
that it is in -- "yshridhar" wrote: Using Conditional Format Format/conditional format/ cell value = 1, selecting the format you want. best Wishes Sreedhar "bkunes" wrote: i have done a search and if the data was a match i gave a "1" and if not a "0". Now is there a way to highlight an entire row of coresponding data if that one column ="1" -- |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
If so B1=
format/conditional formating/formula is =$a1=1, select the format copy the fomats to C1,D1... Adjust the range according to your worksheet best wishes "bkunes" wrote: this works for one cell but i want to highlight that cell and the entire row that it is in -- "yshridhar" wrote: Using Conditional Format Format/conditional format/ cell value = 1, selecting the format you want. best Wishes Sreedhar "bkunes" wrote: i have done a search and if the data was a match i gave a "1" and if not a "0". Now is there a way to highlight an entire row of coresponding data if that one column ="1" -- |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
that didnt work any ideas
-- "yshridhar" wrote: If so B1= format/conditional formating/formula is =$a1=1, select the format copy the fomats to C1,D1... Adjust the range according to your worksheet best wishes "bkunes" wrote: this works for one cell but i want to highlight that cell and the entire row that it is in -- "yshridhar" wrote: Using Conditional Format Format/conditional format/ cell value = 1, selecting the format you want. best Wishes Sreedhar "bkunes" wrote: i have done a search and if the data was a match i gave a "1" and if not a "0". Now is there a way to highlight an entire row of coresponding data if that one column ="1" -- |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
In CF you don't want to use Cell Value Is, but instead you need Formula Is/
=$A1=1 Amend your cell reference as appropriate, but notice the *absolute* reference for the column and *relative* address for the row. I have assumed that you are loking for a number 1, but if you want to look for the text string, change it to =$A1="1" -- David Biddulph "bkunes" wrote in message ... this works for one cell but i want to highlight that cell and the entire row that it is in "yshridhar" wrote: Using Conditional Format Format/conditional format/ cell value = 1, selecting the format you want. best Wishes Sreedhar "bkunes" wrote: i have done a search and if the data was a match i gave a "1" and if not a "0". Now is there a way to highlight an entire row of coresponding data if that one column ="1" -- |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
it highlights but not correct row
-- "David Biddulph" wrote: In CF you don't want to use Cell Value Is, but instead you need Formula Is/ =$A1=1 Amend your cell reference as appropriate, but notice the *absolute* reference for the column and *relative* address for the row. I have assumed that you are loking for a number 1, but if you want to look for the text string, change it to =$A1="1" -- David Biddulph "bkunes" wrote in message ... this works for one cell but i want to highlight that cell and the entire row that it is in "yshridhar" wrote: Using Conditional Format Format/conditional format/ cell value = 1, selecting the format you want. best Wishes Sreedhar "bkunes" wrote: i have done a search and if the data was a match i gave a "1" and if not a "0". Now is there a way to highlight an entire row of coresponding data if that one column ="1" -- |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
That sounds as if you haven't put the right formula in the right cell. Look
again at your data and at your formula. What formula do you have in which cell? -- David Biddulph "bkunes" wrote in message ... it highlights but not correct row "David Biddulph" wrote: In CF you don't want to use Cell Value Is, but instead you need Formula Is/ =$A1=1 Amend your cell reference as appropriate, but notice the *absolute* reference for the column and *relative* address for the row. I have assumed that you are loking for a number 1, but if you want to look for the text string, change it to =$A1="1" -- David Biddulph "bkunes" wrote in message ... this works for one cell but i want to highlight that cell and the entire row that it is in "yshridhar" wrote: Using Conditional Format Format/conditional format/ cell value = 1, selecting the format you want. best Wishes Sreedhar "bkunes" wrote: i have done a search and if the data was a match i gave a "1" and if not a "0". Now is there a way to highlight an entire row of coresponding data if that one column ="1" -- |
#9
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
i selected all the data in my column B and then put in formula is =$a1=1 and
it doesnt work -- "David Biddulph" wrote: That sounds as if you haven't put the right formula in the right cell. Look again at your data and at your formula. What formula do you have in which cell? -- David Biddulph "bkunes" wrote in message ... it highlights but not correct row "David Biddulph" wrote: In CF you don't want to use Cell Value Is, but instead you need Formula Is/ =$A1=1 Amend your cell reference as appropriate, but notice the *absolute* reference for the column and *relative* address for the row. I have assumed that you are loking for a number 1, but if you want to look for the text string, change it to =$A1="1" -- David Biddulph "bkunes" wrote in message ... this works for one cell but i want to highlight that cell and the entire row that it is in "yshridhar" wrote: Using Conditional Format Format/conditional format/ cell value = 1, selecting the format you want. best Wishes Sreedhar "bkunes" wrote: i have done a search and if the data was a match i gave a "1" and if not a "0". Now is there a way to highlight an entire row of coresponding data if that one column ="1" -- |
#10
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
If you want to test only cell a1, the formula in the selected cells in
column B has to be: =$a$1=1 The formula $a1=1 will test a1, a2 a3 etc Tyro "bkunes" wrote in message ... i selected all the data in my column B and then put in formula is =$a1=1 and it doesnt work -- "David Biddulph" wrote: That sounds as if you haven't put the right formula in the right cell. Look again at your data and at your formula. What formula do you have in which cell? -- David Biddulph "bkunes" wrote in message ... it highlights but not correct row "David Biddulph" wrote: In CF you don't want to use Cell Value Is, but instead you need Formula Is/ =$A1=1 Amend your cell reference as appropriate, but notice the *absolute* reference for the column and *relative* address for the row. I have assumed that you are loking for a number 1, but if you want to look for the text string, change it to =$A1="1" -- David Biddulph "bkunes" wrote in message ... this works for one cell but i want to highlight that cell and the entire row that it is in "yshridhar" wrote: Using Conditional Format Format/conditional format/ cell value = 1, selecting the format you want. best Wishes Sreedhar "bkunes" wrote: i have done a search and if the data was a match i gave a "1" and if not a "0". Now is there a way to highlight an entire row of coresponding data if that one column ="1" -- |
#11
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
i want it to test a1 a2 and a3, how do i get column b to highlight the same
rows as in column a -- "Tyro" wrote: If you want to test only cell a1, the formula in the selected cells in column B has to be: =$a$1=1 The formula $a1=1 will test a1, a2 a3 etc Tyro "bkunes" wrote in message ... i selected all the data in my column B and then put in formula is =$a1=1 and it doesnt work -- "David Biddulph" wrote: That sounds as if you haven't put the right formula in the right cell. Look again at your data and at your formula. What formula do you have in which cell? -- David Biddulph "bkunes" wrote in message ... it highlights but not correct row "David Biddulph" wrote: In CF you don't want to use Cell Value Is, but instead you need Formula Is/ =$A1=1 Amend your cell reference as appropriate, but notice the *absolute* reference for the column and *relative* address for the row. I have assumed that you are loking for a number 1, but if you want to look for the text string, change it to =$A1="1" -- David Biddulph "bkunes" wrote in message ... this works for one cell but i want to highlight that cell and the entire row that it is in "yshridhar" wrote: Using Conditional Format Format/conditional format/ cell value = 1, selecting the format you want. best Wishes Sreedhar "bkunes" wrote: i have done a search and if the data was a match i gave a "1" and if not a "0". Now is there a way to highlight an entire row of coresponding data if that one column ="1" -- |
#12
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
If your values are in A1:A10, select B1:B10 and enter the conditional
formatting formula =a1=1 then select the formatting you want. Tyro bkunes" wrote in message ... i want it to test a1 a2 and a3, how do i get column b to highlight the same rows as in column a -- "Tyro" wrote: If you want to test only cell a1, the formula in the selected cells in column B has to be: =$a$1=1 The formula $a1=1 will test a1, a2 a3 etc Tyro "bkunes" wrote in message ... i selected all the data in my column B and then put in formula is =$a1=1 and it doesnt work -- "David Biddulph" wrote: That sounds as if you haven't put the right formula in the right cell. Look again at your data and at your formula. What formula do you have in which cell? -- David Biddulph "bkunes" wrote in message ... it highlights but not correct row "David Biddulph" wrote: In CF you don't want to use Cell Value Is, but instead you need Formula Is/ =$A1=1 Amend your cell reference as appropriate, but notice the *absolute* reference for the column and *relative* address for the row. I have assumed that you are loking for a number 1, but if you want to look for the text string, change it to =$A1="1" -- David Biddulph "bkunes" wrote in message ... this works for one cell but i want to highlight that cell and the entire row that it is in "yshridhar" wrote: Using Conditional Format Format/conditional format/ cell value = 1, selecting the format you want. best Wishes Sreedhar "bkunes" wrote: i have done a search and if the data was a match i gave a "1" and if not a "0". Now is there a way to highlight an entire row of coresponding data if that one column ="1" -- |
#13
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
When you selected column B, are you sure you selected from B1 downwards when
you applied the formula =$a1=1? If you look in cell B3, for example, does the CF formula say =$a3=1? You say the formula highlights the wrong row? If you put the number 1 in A3, which row in column B is highlighted? What formula is sitting in the CF condition for that cell? If you had, for example, selected B2 downwards but applied the formula =$a1=1, you'll be a row adrift. The formula in that case needs to be =$a2=1 -- David Biddulph "bkunes" wrote in message ... i selected all the data in my column B and then put in formula is =$a1=1 and it doesnt work "David Biddulph" wrote: That sounds as if you haven't put the right formula in the right cell. Look again at your data and at your formula. What formula do you have in which cell? -- David Biddulph "bkunes" wrote in message ... it highlights but not correct row "David Biddulph" wrote: In CF you don't want to use Cell Value Is, but instead you need Formula Is/ =$A1=1 Amend your cell reference as appropriate, but notice the *absolute* reference for the column and *relative* address for the row. I have assumed that you are loking for a number 1, but if you want to look for the text string, change it to =$A1="1" -- David Biddulph "bkunes" wrote in message ... this works for one cell but i want to highlight that cell and the entire row that it is in "yshridhar" wrote: Using Conditional Format Format/conditional format/ cell value = 1, selecting the format you want. best Wishes Sreedhar "bkunes" wrote: i have done a search and if the data was a match i gave a "1" and if not a "0". Now is there a way to highlight an entire row of coresponding data if that one column ="1" -- |
#14
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
thank you it works beautifully
-- "David Biddulph" wrote: When you selected column B, are you sure you selected from B1 downwards when you applied the formula =$a1=1? If you look in cell B3, for example, does the CF formula say =$a3=1? You say the formula highlights the wrong row? If you put the number 1 in A3, which row in column B is highlighted? What formula is sitting in the CF condition for that cell? If you had, for example, selected B2 downwards but applied the formula =$a1=1, you'll be a row adrift. The formula in that case needs to be =$a2=1 -- David Biddulph "bkunes" wrote in message ... i selected all the data in my column B and then put in formula is =$a1=1 and it doesnt work "David Biddulph" wrote: That sounds as if you haven't put the right formula in the right cell. Look again at your data and at your formula. What formula do you have in which cell? -- David Biddulph "bkunes" wrote in message ... it highlights but not correct row "David Biddulph" wrote: In CF you don't want to use Cell Value Is, but instead you need Formula Is/ =$A1=1 Amend your cell reference as appropriate, but notice the *absolute* reference for the column and *relative* address for the row. I have assumed that you are loking for a number 1, but if you want to look for the text string, change it to =$A1="1" -- David Biddulph "bkunes" wrote in message ... this works for one cell but i want to highlight that cell and the entire row that it is in "yshridhar" wrote: Using Conditional Format Format/conditional format/ cell value = 1, selecting the format you want. best Wishes Sreedhar "bkunes" wrote: i have done a search and if the data was a match i gave a "1" and if not a "0". Now is there a way to highlight an entire row of coresponding data if that one column ="1" -- |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Conditional Sum Argument results do not equal cell results Excel | Excel Worksheet Functions | |||
highlighting cells that have desired results | Excel Discussion (Misc queries) | |||
Highlighting a Row | Excel Worksheet Functions | |||
How do I configure excel to show results when highlighting cells? | Excel Discussion (Misc queries) | |||
Highlighting blanks via GO TO SPECIAL is not highlighting blank cells - HELP, I'm totally stuck. | Excel Discussion (Misc queries) |