I define some parameter when calling a batch file:
:: Usertype:I,C
set Usertype=%~1
set Deltaval=%~2
If Usertype=="C" set Gender=NA
set Gender=%~3
If Gender==NA
(
goto
END
)
However, I got issue at line If Usertype=="C" set Gender = NA with following error: The syntax of the command is incorrect.
Are there any solution to it?