BrianAlmond
New Member
- Joined
- Mar 23, 2011
- Messages
- 11
I would like a msg box to be displayed after the entirety of several ranges of data have been filled in, this includes "zeros" as the data will be used in equations.
Right now, I'm able to display the message I need only when the "last" cell has data entered, but I want to make this idiot-proof in case that particular cell is not the last cell to have data entered into it.
I'm currently using:
How can this be modified to incorporate multiple ranges of data?
THANKS!
-Brian
Right now, I'm able to display the message I need only when the "last" cell has data entered, but I want to make this idiot-proof in case that particular cell is not the last cell to have data entered into it.
I'm currently using:
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$D$93" Then
Run "DailyCapacityOutput"
End If
End Sub
How can this be modified to incorporate multiple ranges of data?
THANKS!
-Brian