Hello,
This project extracts/manipulates data from a variety of banking institutions, and I'm trying to streamline my code by utilizing input variables better. Is there a way to nest an input variable inside of an action's newly produced variable?
For example, if I want to activate an Excel worksheet by a Name, I can set an input variable as "Bank", then, Bank = "Citi". Now this gives me a dynamic element that allows for copying and pasting one line for each separate bank. Worksheet name = %Bank + '_Raw'%. This will activate the Excel worksheet "Citi_Raw". When my Bank input variable is changed from "Citi" to "Chase", this code will then activate the Excel sheet "Chase_Raw".
I'm trying to take this one step further by storing a variable in this same manner. For example, if I'm using the action "Read from Excel worksheet", I'd like to store the variable as %Bank + "_DataStore"%. However, this syntax will not work. I've also tried %Bank%"_DataStore" and %Bank%+"_DataStore". Am I just missing the correct syntax here, or is this not possible in PAD?