Hi Forms experts,
I am using an inclusive gateway to route using a dropdown within a table. Forms tracks variables using TABLE_NAME_n where n=column number. When it comes to writing the path conditions, I need a wild card for part of the xpath expression.
For example, right now my path conditions might look something like this, in an attempt to capture all possible outcomes.
/dataset/Charge_Detail_1/Responsible_Department="PUBLIC WORKS" or /dataset/Charge_Detail_2/Responsible_Department="PUBLIC WORKS" or /dataset/Charge_Detail_3/Responsible_Department="PUBLIC WORKS" or /dataset/Charge_Detail_4/Responsible_Department="PUBLIC WORKS"or /dataset/Charge_Detail_5/Responsible_Department="PUBLIC WORKS" or /dataset/Charge_Detail_6/Responsible_Department="PUBLIC WORKS" or /dataset/Charge_Detail_7/Responsible_Department="PUBLIC WORKS" or /dataset/Charge_Detail_8/Responsible_Department="PUBLIC WORKS" or /dataset/Charge_Detail_9/Responsible_Department="PUBLIC WORKS" or /dataset/Charge_Detail_10/Responsible_Department="PUBLIC WORKS"
I'd like to know the correct syntax to wildcard the Column Number. Example below (this does not work, hence my question)
/dataset/*/Responsible_Department="PUBLIC WORKS"