Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have attached a sample qvw where i am trying to get list box value in a text object with out using for loop.
Can anyboby help me how to achive it?
Thanks in advance.
GetFieldSelections should work for multiple values or just one:
=GetFieldSelections(Attribute)
Or...
concat(distinct Attribute,', ')
Difference being if NOTHING is selected, getfieldselections(Attribute) will return nothing, while the above expression will return every possible value. So it depends on what you want.
Thanks it is working for me.