Set a macro to refresh after a change in a specific cell

JAdamD

New Member
Joined
Nov 1, 2005
Messages
4
I am a very basic VBA user but have the following code which hides rows based on a Yes/No outcome in a particular column:

Private Sub Worksheet_Activate()

StartRow = 10

EndRow = 19

ColNum = 2

For i = StartRow To EndRow

If Cells(i, ColNum).Value <> "Yes" Then

Cells(i, ColNum).EntireRow.Hidden = True

Else

Cells(i, ColNum).EntireRow.Hidden = False

End If

Next i

End Sub

I'm looking to have this refresh after cell A5 is updated.

Any guidance would be greatly appreciated.
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
Try
VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$A$5" Then Worksheet_Activate
End Sub
Be aware that if you change "cat" to "cat" (edit results in same value) that will still call the other event.
Please use code tags (vba button on posting toolbar) to maintain indentation and readability.
 
Upvote 0

Forum statistics

Threads
1,215,350
Messages
6,124,430
Members
449,158
Latest member
burk0007

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