Deleting content from certains cells

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
Excel74,

Give this a try.

Code:
Sub Delete2017()
Dim lc As Long
Dim lr As Long
Dim i As Long


lc = Cells(7, Columns.Count).End(xlToLeft).Column


For i = 4 To lc
    If Cells(7, i).Value = "2017" Then
        lr = Cells(Rows.Count, i).End(xlUp).Row
        Range(Cells(8, i), Cells(lr, i)).ClearContents
    End If
Next i


End Sub
 
Upvote 0
Excel74,

Give this a try.

Code:
Sub Delete2017()
Dim lc As Long
Dim lr As Long
Dim i As Long


lc = Cells(7, Columns.Count).End(xlToLeft).Column


For i = 4 To lc
    If Cells(7, i).Value = "2017" Then
        lr = Cells(Rows.Count, i).End(xlUp).Row
        Range(Cells(8, i), Cells(lr, i)).ClearContents
    End If
Next i


End Sub

Hey Frank, it worked but what I actually need is to clear contents only on the row that I need to redo. For example if I place myself on row 26, clear only the entire row 26 where 2017 (row 7) is and leave 2016 content as they are.
 
Upvote 0
Okay this code takes action only on the current row (where your cursor is) when you execute the macro

Code:
Sub Delete2017()
Dim lc As Long
Dim i As Long
Dim activerow As Long


lc = Cells(7, Columns.Count).End(xlToLeft).Column


activerow = ActiveCell.Row


For i = 4 To lc
    If Cells(7, i).Value = "2017" Then
        Cells(activerow, i).Value = ""
    End If
Next i


End Sub
 
Upvote 0

Forum statistics

Threads
1,214,872
Messages
6,122,025
Members
449,060
Latest member
LinusJE

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