Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I want to search a value in a column. But the value is in another sheet (column I and each cell in that column). Ex. I want to search all the values of sheetA.ColumnI in ColumnI of sheetB. if found i give an unique number to that row (ColumnJ) in SheetA and the same number to the matched row in sheetB (ColumnJ). I am a beginner so first of all I tried to record a macro. But it is to static : Range("I1").Select Selection.Copy Sheets("Sheet2").Select Columns("I:I").Select Selection.Find(What:="1808,22", After:=ActiveCell, LookIn:=xlFormulas, _ LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _ MatchCase:=False).Activate Range("J1").Select Application.CutCopyMode = False ActiveCell.FormulaR1C1 = "1" Sheets("Sheet1").Select Range("J1").Select ActiveCell.FormulaR1C1 = "1" Range("I2").Select Selection.Copy I have problems with the selection.Find : What:=xxx has to be SheetA:I1 So the find must be in a while till end of the rows in the excel-sheet, also the what must change for each row (I1,I2,I3,...). How can I do this in a better way? Thanks for help. Nic |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Two search category & two search terms | Excel Discussion (Misc queries) | |||
file search or search files | Excel Discussion (Misc queries) | |||
Functions (search within search result) reply to this please | Excel Worksheet Functions | |||
Functions (search within search result) | Excel Worksheet Functions | |||
How do I search excel spreadsheets using multiple search criteria. | Excel Worksheet Functions |