Run VBA Macro when cell value updates, but cell value is a formula that references another sheet

carlsarlsburg

New Member
Joined
Dec 28, 2021
Messages
6
Office Version
  1. 365
Platform
  1. Windows
I am new to using VBA in Excel so please bear with me any help is appreciated.

I am creating an excel sheet that users past in data from another program into sheet 3 (titled 651R-2 Data). Sheet 1 (titled Cover Sheet) references data on sheet using the vlookup formula and displays certain data to be displayed on a coversheet. I came up with the following code that hides certain rows based on a value on the Cover Sheet.

VBA Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)

Rows("1:100").EntireRow.Hidden = False
x = Range("D18").Value
Select Case x
Case 0: Rows("40:48").EntireRow.Hidden = True
Case 1: Rows("20:39").EntireRow.Hidden = True
End Select

End Sub

In Cell D18 the following formula is written, =VLOOKUP(C18,'651R-2 Data'!D$1:E$582,2,FALSE). On sheet 651R-2 Data, the value that it looks up only ranges from 0 to 1.

With Worksheet_SelectionChange whenever I click on another cell in Excel, the hidden rows flicker on and off, which is undesirable. It seems that if I change this to Worksheet_Change, changing the value that D18 looks up on sheet 651R-2 Data will not run the VBA macro to update which rows should be hidden rows (maybe this is because cell D18 is a referencing another sheet so the formula isn't changing so Worksheet_Change doesn't see this as a change even if it evaluates to a different value).

What can I do to update the hidden rows on the Cover sheet with my VBA macro, when the user pastes data into sheet 651R-2 that changes what cell D18 evaluates to without using Worksheet_SelectionChange which causes the rows to flicker?

Thank you!
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
I changed my VBA code to. Private Sub Worksheet_Calculate(ByVal Target As Range)

When I change the value that D18 is looking up I get Compile error: Procedure declaration does not match description of even or procedure having the same name.
 
Upvote 0
I changed my VBA code to. Private Sub Worksheet_Calculate(ByVal Target As Range)

When I change the value that D18 is looking up I get Compile error: Procedure declaration does not match description of even or procedure having the same name.
Please post your current code that is returning this error.
 
Upvote 0
VBA Code:
Private Sub Worksheet_Calculate(ByVal Target As Range)

Rows("1:100").EntireRow.Hidden = False
x = Range("D18").Value
Select Case x
Case 0: Rows("40:48").EntireRow.Hidden = True
Case 1: Rows("20:39").EntireRow.Hidden = True
End Select


End Sub

With my limited knowledge of VBA when offthelip said the following:
try moving it to the worksheet calculate event

They meant change
VBA Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
to
VBA Code:
Private Sub Worksheet_Calculate(ByVal Target As Range)

Which resulted in a compile error.
 
Upvote 0
Worksheet_Calculate does not take in any arguments (parameters).
Just remove them from the first line.

Also, there is no reason to set the value of D18 equal to x, i.e.
VBA Code:
Private Sub Worksheet_Calculate()

Rows("1:100").EntireRow.Hidden = False
Select Case Range("D18").Value
    Case 0: Rows("40:48").EntireRow.Hidden = True
    Case 1: Rows("20:39").EntireRow.Hidden = True
End Select

End Sub
 
Upvote 0
Private Sub Worksheet_Calculate(ByVal Target As Range)
This call is invalid it should be
VBA Code:
Private Sub Worksheet_Calculate()

End Sub
 
Upvote 0
The following code:

VBA Code:
Private Sub Worksheet_Calculate()

Rows("1:100").EntireRow.Hidden = False
x = Range("D18").Value
Select Case x
Case 0: Rows("40:48").EntireRow.Hidden = True
Case 1: Rows("20:39").EntireRow.Hidden = True
End Select

End Sub

Results in run-time error '-2147417848 (80010108)
Method "Hidden' of object 'Range' failed
 
Upvote 0
The code works for me without error.
Do you have any protected cells or merged cells on your sheet?
 
Upvote 0
There are merged cells on my sheet. Not sure if this matters but I don't get these errors with Worksheet_SelectionChange. Cell D18 is merged with E18, unmerging these cells still results in the error.

Below are links to images of my excel file and the error.
Coversheet

651R-2 Data Sheet

Error Code
 
Upvote 0

Forum statistics

Threads
1,214,834
Messages
6,121,873
Members
449,056
Latest member
ruhulaminappu

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