Delete row based on whether cell in alternate column in row has data

essjayhaitch

New Member
Joined
Mar 20, 2024
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Hi There

So I need a code for deleting the single row where the active selected cell is, but only if the corresponding cell in column AQ of that row has not got data in it.

eg.

I've selected F6 and only want to delete that row if AQ6 is empty.

The active cell selection is dynamic so could be any row number or column.

Ultimately, what I'm trying to achieve is for certain rows never to be allowed to be deleted but I can't use sheet protection for other reasons so I am using data in column AQ (which will be hidden) as the reference.

Thanks in advance
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
Hello, @essjayhaitch!
Try this:
VBA Code:
Sub DelRow()
    With ActiveSheet
        If Selection.Areas(1).Rows.Count > 1 Then Exit Sub
        If Cells(Selection.Row, 43) = "" Then Selection.EntireRow.Delete
    End With
End Sub
 
Upvote 0
Solution
Hello, @essjayhaitch!
Try this:
VBA Code:
Sub DelRow()
    With ActiveSheet
        If Selection.Areas(1).Rows.Count > 1 Then Exit Sub
        If Cells(Selection.Row, 43) = "" Then Selection.EntireRow.Delete
    End With
End Sub
Awesome

Appreciate it, that's the business!!!

That Cells(Selection.Row) bit will come in handy for a few other things too.
 
Upvote 0

Forum statistics

Threads
1,215,073
Messages
6,122,970
Members
449,095
Latest member
Mr Hughes

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