Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hey guys, i was wondering if there was a way to find information from "Column
A" and remove it from "Column B" For Example | Column A | Column B | | 1 | 1 | | 3 | 2 | | 5 | 3 | | 6 | 4 | | 8 | 5 | | 9 | 6 | into | 1 | | | 3 | 2 | | 5 | | | 6 | 4 | | 8 | | | 9 | | or somehow use a Column C to Identify the rows that repeat column A info in Column B. For example:? | 1 | 1 | 1 | | 3 | 2 | | | 5 | 3 | 3 | | 6 | 4 | | | 8 | 5 | 5 | | 9 | 6 | 6 | THANKS! johnny b |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One way to get both result sets easily ..
Assume data in cols A and B, from row2 down In C1: =IF(ISNUMBER(MATCH(B2,A:A,0)),"",B2) In D1: =IF(ISNUMBER(MATCH(B2,A:A,0)),B2,"") Select C1:D1, copy down to last row of data in col B. Col C returns only items in col B not found in col A (your 1st result set), while col D returns the other way round, ie only items in col B found in col A (your 2nd result set). Just copy either col C or D as desired, then overwrite the source col B with a paste special as values. -- Max Singapore http://savefile.com/projects/236895 xdemechanik --- "Johnny B" wrote: Hey guys, i was wondering if there was a way to find information from "Column A" and remove it from "Column B" For Example | Column A | Column B | | 1 | 1 | | 3 | 2 | | 5 | 3 | | 6 | 4 | | 8 | 5 | | 9 | 6 | into | 1 | | | 3 | 2 | | 5 | | | 6 | 4 | | 8 | | | 9 | | or somehow use a Column C to Identify the rows that repeat column A info in Column B. For example:? | 1 | 1 | 1 | | 3 | 2 | | | 5 | 3 | 3 | | 6 | 4 | | | 8 | 5 | 5 | | 9 | 6 | 6 | THANKS! johnny b |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Sorry, some typos in earlier response just detected:
C1, D1 should have read as C2, D2 (trust above was obvious <g) -- Max Singapore http://savefile.com/projects/236895 xdemechanik --- |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Finding Info from sheet 1 and removing only those rows from sheet | Excel Discussion (Misc queries) | |||
Finding info of one column and removing it from another | Excel Discussion (Misc queries) | |||
Finding/Removing Duplicate Numbers In A Column ? | New Users to Excel | |||
Finding the closest number in column A and take the value in column B | Excel Worksheet Functions | |||
Link info in one cell to info in several cells in another column (like a database) | Excel Discussion (Misc queries) |