Hi,
This would be a multiple choice style variable. e.g. you add choices to a varaible and then when it is used you can choose as little or many of the choices as you wish.
This variable would require a new type of "block" being used, an 'for_each' type. For example,
this code would simply repeat for each option selected (in this example, it would just show the name of each option in a row). You should be able to test the variable to see if it has any options selected so you can ignore the whole block.
Thanks,
Paul.
This would be a multiple choice style variable. e.g. you add choices to a varaible and then when it is used you can choose as little or many of the choices as you wish.
This variable would require a new type of "block" being used, an 'for_each' type. For example,
Code:
block if multichoicevar <> "" Block for_each = multichoicevar echo "multichoicevar" end for_each block end block
Thanks,
Paul.
Comment