VBA Popup based on cell value

mikal00

New Member
Joined
Jul 5, 2017
Messages
1
I am trying to get a msgbox to popup based on a value in the spreadsheet.
I am currently using the below but whenever I open up a second workbook, im getting a Microsoft Visual Basic Run-time error '9': Subscript out of range

Private Sub Worksheet_Calculate()
If Sheets("Fx").Range("F1").Value = "NEED DATA" Then
MsgBox "Enter Exchange Rates", vbOKOnly
End If
End Sub


background: I have a 7 tabbed workbook. one of the tabs holds exchange rates which filter into other sheets.
I have created a IF function in the sheet to check weather this weeks exchange rates have been added in.
the IF will either return "OK" or "NEED DATA". this is in cell "F1"

Anyone any clues how to get this towkr?
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
try:
Code:
Private Sub Worksheet_Calculate()
    If ThisWorkbook.Sheets("Fx").Range("F1").Value = "NEED DATA" Then
        MsgBox "Enter Exchange Rates", vbOKOnly
    End If
End Sub
 
Upvote 0

Forum statistics

Threads
1,216,759
Messages
6,132,558
Members
449,736
Latest member
anthx

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