Ogni blocco if ha bisogno del suo End If. Quindi puoi usare i due tipi di scrittura:
codice:
if choice = vbyes then
...
end if

if choice = vbno then
...
end if
oppure
codice:
if choice = vbyes then
...
elseif choice = vbno then
...
endif
senz'altro in questo caso è più comodo usare elseif, mettendo un solo end if alla fine.