Unfortunately, we have all tried to do this at one time or another. But, as with all coding languages that I have worked with so far, all variables must be defined prior to running, and you can’t use a variable to create a variable.
The most practical way to work around this is to list your variables in column A of an Excel document, and list the value in column B. In C1, you will have an input field, and in D1, you will have a vlookup formula, =Vlookup(C1,A:B,2,false).
when you need a variable, you call it by writing the unique variable to C1, and reading D1 to your reusable variable.
best of luck!