Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
- In the list box i've a Group field and with presentaion as check box. After marking the data i'll click the button to store the data in variable.
- Button contains the action like following:
variable : vGroup
value: =GetFieldSelections(Group,',')
- Now the variable contains the data. But if selected data is greater than 6 the variable not able to hold the data.
I don't know y it happening can anybody solve this problem.
I'm attaching sample qvw file...But i'm using personal edition.
Hi Jacq,
The GetFieldSelections() function has a 3rd parameter as well (default value is 6) for number of selections to record.
You can put another number in there to capture more selections, like:
=GetFieldSelections(Group,',',20)
Hi Jacq,
The GetFieldSelections() function has a 3rd parameter as well (default value is 6) for number of selections to record.
You can put another number in there to capture more selections, like:
=GetFieldSelections(Group,',',20)
Johannes Sunden,
Ya..It's woking thanks a lot.
No worries, glad to hear it's working fine for you.
Johannes Sunden,
Small fare from you if list box is with expression how can i store selected values into variable. B'coz if listbox is with expression then this code:=GetFieldSelections(Group,',',20) is not working to store selections into variable.
Is it possible to store unselected data of listbox in one variable..
i.e.., reverse to this code =GetFieldSelections(Group,',',20)