Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I need to find the first data occurance in column D and delete all rows above
it except rows 1 and 2. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try
Sub marine() lastrow = Range("A3").End(xlDown).Row Range("A3:A" & lastrow - 1).EntireRow.ClearContents End Sub Mike "jmr4h8" wrote: I need to find the first data occurance in column D and delete all rows above it except rows 1 and 2. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I may have misreda your post if you reall mean delete the rows as opposed to
clear the contents then use this instead Sub marine() lastrow = Range("A3").End(xlDown).Row Range("A3:A" & lastrow - 1).EntireRow.Delete End Sub Mike "Mike H" wrote: Try Sub marine() lastrow = Range("A3").End(xlDown).Row Range("A3:A" & lastrow - 1).EntireRow.ClearContents End Sub Mike "jmr4h8" wrote: I need to find the first data occurance in column D and delete all rows above it except rows 1 and 2. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I knew what you meant and replaced clearcontents with delete... im familiar
with vb but have never worked with inside of excel "Mike H" wrote: I may have misreda your post if you reall mean delete the rows as opposed to clear the contents then use this instead Sub marine() lastrow = Range("A3").End(xlDown).Row Range("A3:A" & lastrow - 1).EntireRow.Delete End Sub Mike "Mike H" wrote: Try Sub marine() lastrow = Range("A3").End(xlDown).Row Range("A3:A" & lastrow - 1).EntireRow.ClearContents End Sub Mike "jmr4h8" wrote: I need to find the first data occurance in column D and delete all rows above it except rows 1 and 2. |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This deletes all data in my sheet except for the first 2 rows.
the set up is this... the first 2 rows contain headers.... then there is a gap of 40 or so rows before the data begins. so rows 3 through 44 are empty... rows 45 through 233 contain data... the trick is that the rows that i say are empty are not truely empty, but contain link formulas that return "" ...nothing... depending on the conditions. What I need is rid the gap so that what is in row 45 is now in row 3 and row 46 is in row 4 and so on. im not sure if its possible what do you think? "Mike H" wrote: Try Sub marine() lastrow = Range("A3").End(xlDown).Row Range("A3:A" & lastrow - 1).EntireRow.ClearContents End Sub Mike "jmr4h8" wrote: I need to find the first data occurance in column D and delete all rows above it except rows 1 and 2. |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
empty... rows 45 through 233 contain data... the trick is that the rows that
i say are empty are not truely empty, but contain link formulas that return "" ...nothing... That's not a trick it's completely different to what you said first time :) Try this Sub marine() Dim myrange as range, myrange1 As Range lastrow = Cells(Rows.Count, "A").End(xlUp).Row Set myrange = Range("A3:A" & lastrow) For Each c In myrange If c.Value = "" Then If myrange1 Is Nothing Then Set myrange1 = c.EntireRow Else Set myrange1 = Union(myrange1, c.EntireRow) End If End If Next myrange1.EntireRow.Delete End Sub Mike "jmr4h8" wrote: This deletes all data in my sheet except for the first 2 rows. the set up is this... the first 2 rows contain headers.... then there is a gap of 40 or so rows before the data begins. so rows 3 through 44 are empty... rows 45 through 233 contain data... the trick is that the rows that i say are empty are not truely empty, but contain link formulas that return "" ...nothing... depending on the conditions. What I need is rid the gap so that what is in row 45 is now in row 3 and row 46 is in row 4 and so on. im not sure if its possible what do you think? "Mike H" wrote: Try Sub marine() lastrow = Range("A3").End(xlDown).Row Range("A3:A" & lastrow - 1).EntireRow.ClearContents End Sub Mike "jmr4h8" wrote: I need to find the first data occurance in column D and delete all rows above it except rows 1 and 2. |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This also deletes everything except the first two rows. Could it be easier to
hide rows rather than delete them? And to make sure im going about this the right way...Im right click my sheet tab...then selecting view code and then pasting the code and finally running it... is that right? "Mike H" wrote: empty... rows 45 through 233 contain data... the trick is that the rows that i say are empty are not truely empty, but contain link formulas that return "" ...nothing... That's not a trick it's completely different to what you said first time :) Try this Sub marine() Dim myrange as range, myrange1 As Range lastrow = Cells(Rows.Count, "A").End(xlUp).Row Set myrange = Range("A3:A" & lastrow) For Each c In myrange If c.Value = "" Then If myrange1 Is Nothing Then Set myrange1 = c.EntireRow Else Set myrange1 = Union(myrange1, c.EntireRow) End If End If Next myrange1.EntireRow.Delete End Sub Mike "jmr4h8" wrote: This deletes all data in my sheet except for the first 2 rows. the set up is this... the first 2 rows contain headers.... then there is a gap of 40 or so rows before the data begins. so rows 3 through 44 are empty... rows 45 through 233 contain data... the trick is that the rows that i say are empty are not truely empty, but contain link formulas that return "" ...nothing... depending on the conditions. What I need is rid the gap so that what is in row 45 is now in row 3 and row 46 is in row 4 and so on. im not sure if its possible what do you think? "Mike H" wrote: Try Sub marine() lastrow = Range("A3").End(xlDown).Row Range("A3:A" & lastrow - 1).EntireRow.ClearContents End Sub Mike "jmr4h8" wrote: I need to find the first data occurance in column D and delete all rows above it except rows 1 and 2. |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
That's odd. What the macro does is take the used range of column A and if a cell in A is "" the entire row is deleted. Looking back to your original post you did say column D but given your understanding of VB I guess you spotted that. maybe hiding is the best option. Mike "jmr4h8" wrote: This also deletes everything except the first two rows. Could it be easier to hide rows rather than delete them? And to make sure im going about this the right way...Im right click my sheet tab...then selecting view code and then pasting the code and finally running it... is that right? "Mike H" wrote: empty... rows 45 through 233 contain data... the trick is that the rows that i say are empty are not truely empty, but contain link formulas that return "" ...nothing... That's not a trick it's completely different to what you said first time :) Try this Sub marine() Dim myrange as range, myrange1 As Range lastrow = Cells(Rows.Count, "A").End(xlUp).Row Set myrange = Range("A3:A" & lastrow) For Each c In myrange If c.Value = "" Then If myrange1 Is Nothing Then Set myrange1 = c.EntireRow Else Set myrange1 = Union(myrange1, c.EntireRow) End If End If Next myrange1.EntireRow.Delete End Sub Mike "jmr4h8" wrote: This deletes all data in my sheet except for the first 2 rows. the set up is this... the first 2 rows contain headers.... then there is a gap of 40 or so rows before the data begins. so rows 3 through 44 are empty... rows 45 through 233 contain data... the trick is that the rows that i say are empty are not truely empty, but contain link formulas that return "" ...nothing... depending on the conditions. What I need is rid the gap so that what is in row 45 is now in row 3 and row 46 is in row 4 and so on. im not sure if its possible what do you think? "Mike H" wrote: Try Sub marine() lastrow = Range("A3").End(xlDown).Row Range("A3:A" & lastrow - 1).EntireRow.ClearContents End Sub Mike "jmr4h8" wrote: I need to find the first data occurance in column D and delete all rows above it except rows 1 and 2. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
My Macro Won't Delete Rows?? | New Users to Excel | |||
Delete all Rows Macro | Excel Discussion (Misc queries) | |||
Macro to Delete Certain Rows | Excel Discussion (Misc queries) | |||
delete rows using macro | Excel Worksheet Functions | |||
delete rows-macro | Excel Discussion (Misc queries) |