Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
I am hoping someone can help me. I am about to fill a spreadsheet with data and i have a problem. There will be about 8 columns but what i need to do is highlight where there are multiple pairs of data. Not if say column 5 has multiple names but where column 5 has a name and column 8 has a name. I need to highlight any rows there the same two names occur in these cells. I would like this to search automatically as there will be thousands of names. I need to be able to do it comparing columns 5-6, 5-7, 5-8, 6-7, 6-8 and 7-8 but I assume I just copy the same formula accross. Can anyone help me please. Thanks |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
In the 9th column put a formula like
=SUM(COUNTIF($A:$H,$A1:$H1))8 entered with Ctrl+Shift+Enter rather than just enter since this is an array formula. This is for I1 No select I1 and drag fill down the column Rows that have values that are found anywhere in another row will show true. This assumes every cell contains names of interest. -- Regards, Tom Ogilvy "Seb Warmoth" wrote: Hi I am hoping someone can help me. I am about to fill a spreadsheet with data and i have a problem. There will be about 8 columns but what i need to do is highlight where there are multiple pairs of data. Not if say column 5 has multiple names but where column 5 has a name and column 8 has a name. I need to highlight any rows there the same two names occur in these cells. I would like this to search automatically as there will be thousands of names. I need to be able to do it comparing columns 5-6, 5-7, 5-8, 6-7, 6-8 and 7-8 but I assume I just copy the same formula accross. Can anyone help me please. Thanks |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This is excellent but I am only looking to do pairs at a time, such as column
c/e or e/f, not the whole lot at once, any ideas? Thanks "Tom Ogilvy" wrote: In the 9th column put a formula like =SUM(COUNTIF($A:$H,$A1:$H1))8 entered with Ctrl+Shift+Enter rather than just enter since this is an array formula. This is for I1 No select I1 and drag fill down the column Rows that have values that are found anywhere in another row will show true. This assumes every cell contains names of interest. -- Regards, Tom Ogilvy "Seb Warmoth" wrote: Hi I am hoping someone can help me. I am about to fill a spreadsheet with data and i have a problem. There will be about 8 columns but what i need to do is highlight where there are multiple pairs of data. Not if say column 5 has multiple names but where column 5 has a name and column 8 has a name. I need to highlight any rows there the same two names occur in these cells. I would like this to search automatically as there will be thousands of names. I need to be able to do it comparing columns 5-6, 5-7, 5-8, 6-7, 6-8 and 7-8 but I assume I just copy the same formula accross. Can anyone help me please. Thanks |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
something along the lines of
in: I1 =(countif($c:$c,$e1)+countif($e:$e,$c1))2 then drag fill downt he column. -- Regards, Tom Ogilvy "Seb Warmoth" wrote: This is excellent but I am only looking to do pairs at a time, such as column c/e or e/f, not the whole lot at once, any ideas? Thanks "Tom Ogilvy" wrote: In the 9th column put a formula like =SUM(COUNTIF($A:$H,$A1:$H1))8 entered with Ctrl+Shift+Enter rather than just enter since this is an array formula. This is for I1 No select I1 and drag fill down the column Rows that have values that are found anywhere in another row will show true. This assumes every cell contains names of interest. -- Regards, Tom Ogilvy "Seb Warmoth" wrote: Hi I am hoping someone can help me. I am about to fill a spreadsheet with data and i have a problem. There will be about 8 columns but what i need to do is highlight where there are multiple pairs of data. Not if say column 5 has multiple names but where column 5 has a name and column 8 has a name. I need to highlight any rows there the same two names occur in these cells. I would like this to search automatically as there will be thousands of names. I need to be able to do it comparing columns 5-6, 5-7, 5-8, 6-7, 6-8 and 7-8 but I assume I just copy the same formula accross. Can anyone help me please. Thanks |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This is then searching for whatever is in E1 in column C. I want, if C2 and
E2 repeat further down in say C12 and E12, it would highlight this somehow. Thanks "Tom Ogilvy" wrote: something along the lines of in: I1 =(countif($c:$c,$e1)+countif($e:$e,$c1))2 then drag fill downt he column. -- Regards, Tom Ogilvy "Seb Warmoth" wrote: This is excellent but I am only looking to do pairs at a time, such as column c/e or e/f, not the whole lot at once, any ideas? Thanks "Tom Ogilvy" wrote: In the 9th column put a formula like =SUM(COUNTIF($A:$H,$A1:$H1))8 entered with Ctrl+Shift+Enter rather than just enter since this is an array formula. This is for I1 No select I1 and drag fill down the column Rows that have values that are found anywhere in another row will show true. This assumes every cell contains names of interest. -- Regards, Tom Ogilvy "Seb Warmoth" wrote: Hi I am hoping someone can help me. I am about to fill a spreadsheet with data and i have a problem. There will be about 8 columns but what i need to do is highlight where there are multiple pairs of data. Not if say column 5 has multiple names but where column 5 has a name and column 8 has a name. I need to highlight any rows there the same two names occur in these cells. I would like this to search automatically as there will be thousands of names. I need to be able to do it comparing columns 5-6, 5-7, 5-8, 6-7, 6-8 and 7-8 but I assume I just copy the same formula accross. Can anyone help me please. Thanks |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Would the duplication of E2 have to be in column E or could (for example)
C9 = E2 and E9 = C2? would any matches/duplicates be marked in both locations (rows. 2 and 9 in the example) or would the first occurance be unmarked. -- Regards, Tom Ogilvy "Seb Warmoth" wrote: This is then searching for whatever is in E1 in column C. I want, if C2 and E2 repeat further down in say C12 and E12, it would highlight this somehow. Thanks "Tom Ogilvy" wrote: something along the lines of in: I1 =(countif($c:$c,$e1)+countif($e:$e,$c1))2 then drag fill downt he column. -- Regards, Tom Ogilvy "Seb Warmoth" wrote: This is excellent but I am only looking to do pairs at a time, such as column c/e or e/f, not the whole lot at once, any ideas? Thanks "Tom Ogilvy" wrote: In the 9th column put a formula like =SUM(COUNTIF($A:$H,$A1:$H1))8 entered with Ctrl+Shift+Enter rather than just enter since this is an array formula. This is for I1 No select I1 and drag fill down the column Rows that have values that are found anywhere in another row will show true. This assumes every cell contains names of interest. -- Regards, Tom Ogilvy "Seb Warmoth" wrote: Hi I am hoping someone can help me. I am about to fill a spreadsheet with data and i have a problem. There will be about 8 columns but what i need to do is highlight where there are multiple pairs of data. Not if say column 5 has multiple names but where column 5 has a name and column 8 has a name. I need to highlight any rows there the same two names occur in these cells. I would like this to search automatically as there will be thousands of names. I need to be able to do it comparing columns 5-6, 5-7, 5-8, 6-7, 6-8 and 7-8 but I assume I just copy the same formula accross. Can anyone help me please. Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Duplicate Rows | Excel Worksheet Functions | |||
how to duplicate rows? | Excel Discussion (Misc queries) | |||
Duplicate rows into new rows based on row value | Excel Worksheet Functions | |||
Duplicate rows, put in another value | Excel Worksheet Functions | |||
Duplicate rows Elimination- change rows accordingly | Excel Programming |