Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I would like to create a list box using a variable in the expression. The variable contains the names I want displayed for selection in the list box.
Is this possible?
You can try using the variable as filter, use something like this as <expression> list box field (replace FieldToFilter with the field name):
=If(Match(FieldToFilter, $(vUSNFDMParts) ), FieldToFilter)
Just like a calculated dimension.
How does the variable look like?
vUSNFDMParts | = | '01012-US-G', '01012-US-S' |
The items within the ' ' are names within a field.
Hi,
I think it's not possible
You can try using the variable as filter, use something like this as <expression> list box field (replace FieldToFilter with the field name):
=If(Match(FieldToFilter, $(vUSNFDMParts) ), FieldToFilter)
Just like a calculated dimension.
That works. Thanks