ActiveSheet.Unprotect
Cells.CheckSpelling SpellLang:=2057
If Range("F4").Value = 1 Then
MsgBox "MARKED UP BUDGET does not equal TOTAL! Please amend as required"
Application.Run "LATESTMEDIAPLANVERSION.xlsm!final"
I currently have two pieces of code that yield warning boxes. However at the moment these pop up but don’t eject you from the macro.. I.E I just want to ensure that the line:
Application.Run......
is only reached if you don’t prompt the warning box. What is the the right code for this?.
Change your code to: