I've got a wierd one here for you guys.
I need help in selecting a range and deleting an entire row if A in my range is not empty. I want to only keep rows if A is empty.
The trick is my range has to be from this row.
What ever cell that lands on I need the range to be from that row in A to the end of I. So, if that cell is F45 and column I goes to 75. I need my range to be A45:A75. Then, anything in that range that is not empty delete entire row keeping rows whose cells in A are empty.
I hope this makes sense.
Thanks for your time and help.
I need help in selecting a range and deleting an entire row if A in my range is not empty. I want to only keep rows if A is empty.
The trick is my range has to be from this row.
Code:
Range("F3").Select
Selection.End(xlDown).Select
Selection.End(xlDown).Select
What ever cell that lands on I need the range to be from that row in A to the end of I. So, if that cell is F45 and column I goes to 75. I need my range to be A45:A75. Then, anything in that range that is not empty delete entire row keeping rows whose cells in A are empty.
I hope this makes sense.
Thanks for your time and help.