deleting blank 'rows' in range - not delete entire row

RobbieC

Active Member
Joined
Dec 14, 2016
Messages
376
Office Version
  1. 2010
Platform
  1. Windows
Hi there, I have a range, L1:Q50 - this is a 6 column range.

I have data on some of the rows (for each row there is always something in column L, but not nessesarily in the other 5)

I'm looking to move each row (of 6 cells) up so that there are no blank 'rows' separating them...

I can't use EntireRow.Delete because this range is surrounded by other data

I'm sure that I have done this before, but for the life of me I can't remember...

If you can point me in the right direction, I'd be very grateful

Thanks
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
If Col L always has something in it, then there are no "blank rows". Can you please explain what you mean?
 
Upvote 0
Sorry Fluff, I meant that if there is an entry within the range, column L will have a value (even if the other 5 columns don't)
 
Upvote 0
So you want to delete rows in L1:Q50 only where col L is blank. Is that right?
 
Upvote 0
Ok, how about
Code:
Sub RobbieC()
   Dim Rng As Range
   For Each Rng In Range("L1:L50").SpecialCells(xlBlanks).Areas
      Rng.Resize(, 6).Delete xlShiftUp
   Next Rng
End Sub
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,424
Messages
6,119,401
Members
448,893
Latest member
AtariBaby

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top