I have a variable which uses drop down choices which are assigned at section level. The choices are simple text options eg:
Grape
--- Chardonnay
--- Shiraz
--- Merlot
Is it possible to dump the setting of the section level variable text into a block if?
I can test for the variable meets a certain string eg:
Grape == "Chardonnay"
But I need to dump the actual value "Chardonnay" into the block if as set at the section level to test against another variable without having to write lots of "AND/OR"
eg:
NewVariable == "value of Grape variable"
where "value of grape variable" is replaced dynamically depending on the value declared at the specific section level... in this case "Chardonnay" so it would read when parsed :
NewVariable == "Chardonnay"
Grape
--- Chardonnay
--- Shiraz
--- Merlot
Is it possible to dump the setting of the section level variable text into a block if?
I can test for the variable meets a certain string eg:
Grape == "Chardonnay"
But I need to dump the actual value "Chardonnay" into the block if as set at the section level to test against another variable without having to write lots of "AND/OR"
eg:
NewVariable == "value of Grape variable"
where "value of grape variable" is replaced dynamically depending on the value declared at the specific section level... in this case "Chardonnay" so it would read when parsed :
NewVariable == "Chardonnay"
Comment