I don't know how to explain it, but i wanna do something like this:
@echo off
set test1=500
set test2=750
set /p view=
set show=%%view%%
echo %show%
pause
Basically I want to type in "test1" or "test2" and then the variable 'show' should set to %test1% (500) or %test2% (750), but it won't work for some reason. It always shows '%view%'. It should show up as '500' or '750'. Any help?
PS: I'm sorry, but I am bad at explaining stuff.