Simple VB question

H

HammerHead

I have this macro which checks to see if a cell has a value in it, i want
it to carry on and execute the rest of the macro if it has and halt and exit
if it hasn't. At present it continues thru and runs the rest of the macro.

what I have at moment

if ("b32") = ("b999")
then
msgbox " Please make selection"
end if
Call normaltarrif
end sub

Thx all
 
D

Don Guillett

if range("b32") = range("b999") then
msgbox " Please make selection"
Call normaltarrif
else exit sub
end if
end sub
 
T

Tom Ogilvy

if ("b32") <> ("b999") then
then
msgbox " Bad Value"
Exit sub
end if
Call normaltarrif
end sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top