Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have field (say A)which is selected from a list box whose status is inherited. When ever I select value A from list box same value should reflect in alternate state (XYZ). I know how to copy selection from one alternate state to another alternate state. But when I use the same thing for inherited to alternate I am not able to do that.
Please provide your valuable inputs.
Thank you,
Mohan
If you inherite state from default state, try $ as set identifier in your copy action.
I tired using $ as shown below but not working. Can you please provide an example.
=if(getfieldselections(Fieldname,';','$')='FieldValue',requiredvalue)
this expression I gave in alternate state list box.
Not really sure what you want to achieve, but I think you will have issues calling the default set from the alternate state list box. Instead, create a variable
vTest:
=Only({$} Fieldname)
and change your field expression in the alternate list box to:
=If(vTest = 'FieldValue', requiredValue)
It worked thank you!!
If your question is answered, please flag the correct answer Correct Answer.