If you want to return from a CALL, you use EXIT command with /B argument (as “EXIT” alone will terminate the batch file).
For example:
CALL :SUB_ONE
CALL :SUB_TWO
GOTO :EOF
:SUB_ONE
ECHO Hello from one
EXIT /B
:SUB_TWO
ECHO Hello from two
EXIT /B
:EOF