Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Can I set Alternate State as a parameter for the function GetFieldSelections in the latest QV-version?
Thank you in advance,
Larisa
Yes you can. see the screenshot below (last argument is state_name)
I tried it like this:
GetFieldSelections(FieldName[,[,[,BS]]])
and this:
(FieldName,,,'BS')
It doesn't work.
Try this:
GetFieldSelections(FieldName, ',', 10000, 'BS')
You need to use values for all the parameters in between too. Just skipping them with a comma does not work.
Thanks a lot!