I have a drop down variable selector in which a user can select from a list and assign a value to vPCType1. I have 10 of these variable selection options.
Next, I have a variable called vPCTypeMatch which is put into a table and looks through those 10 options to determine which, if any, a row in the table matches.
Next, I want to create another variable called vPCSubtype using that vPCTypeMatch. So if vPCTypeMatch=1, then my variable I am using should be vPCSubtype1. If vPCTypeMatch=2, then my variable I want to use is vPCSubtype2. I can get that to work, but I cannot get it to calculate.
If I use =$(='vPCSubtype'&$(vPCTypeMatch)), it will work when a single row is selected, but not if there are multiple rows.
One Row:
Multiple Rows:
Any ideas on what I am doing wrong or a better approach to this?