Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I'd use something like this to loop through a column to find the first cell
with data and delete it. rowcounter = 3 lookuprange = "J" & rowcounter Do Do While Range(lookuprange).Value = "" rowcounter = rowcounter + 1 lookuprange = "J" & rowcounter Loop Loop Until Range(lookuprange).Value < "" Range(lookuprange).ClearContents hope this helps! -chad "Mike" wrote: Hello Could someone please help me. I have a workbook that imports data to Columns (A:O) and Data starts in Row 3 and contain different row amout of data with each import. With Headers inrow 2. I would like to be able to Loop thur records in column J and if record exsist in column J sheet2 then delete or move record to sheet3 leave New Data in sheet1 and copy New Data to sheet2 at the end of data Please help me Thanks Mike |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Finding muliple duplicate records in spreadsheet | Excel Worksheet Functions | |||
Finding duplicate records that are not exact matches but very clos | Excel Discussion (Misc queries) | |||
Finding duplicate records | Excel Worksheet Functions | |||
Finding duplicate records in multiple worksheets | Excel Discussion (Misc queries) | |||
Finding duplicate records in Excel | Excel Discussion (Misc queries) |