Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am trying to return all values in field country_name regardless of any selections I have made in other fields:
{1}country_name
Yet this returns nothing. I assume this only works if I use set analysis such as: count({1}country_name).
How can I return all the values in the field without performing set analysis?
The exact set expression I am performing is: findoneof(product_name, {1<country_name={'$(CountrySelected)'}>}product_name)
My only solution is to concat all field values in a variable and pass the variable in the set expression, but this seems inefficient.
@prayner , what exactly are you trying to achieve? Why do you think concat({1} ...) won't work?
It does work, but I am wondering if there is a more simple solution?