Forum Discussion
Greg Bonaparte
Nov 09, 2018Iron Contributor
yes no Selection button on a msgbox
I have the following code: Private Sub Worksheet_Change(ByVal Target As Range) If Not (Application.Intersect(Range(" U30:U400"), Target) Is Nothing) Then MsgBox "TURN OFF AUTO CALCULATE AFTER ...
- Nov 11, 2018
This was perfect! Thank you Wyn.
Wyn Hopkins
Nov 10, 2018MVP
Try this...
Private Sub Worksheet_Change(ByVal Target As Range) If Not (Application.Intersect(Range(" U30:U400"), Target) Is Nothing) Then If MsgBox("HAVE YOU ENTERED ALL 'ADDITIONAL SHARES' ?", vbQuestion + vbYesNo, " U R G E N T A L E R T ") = vbYes Then Call ManualCalculate End If End If End Sub
Greg Bonaparte
Nov 11, 2018Iron Contributor
This was perfect! Thank you Wyn.