Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am trying to accomplish this
If the User selects a Value from the List Box the Current Selection Box Shall Display
for Example if the user selects a Fiedl " Year" the Current Selection Box shall say "You Have Slelected Year " and the 'Field Value for Year'
Is it possible
Not with the native object.
You can design a text object and use the GetCurrentSelections() (for instance) expression.
Hope it helps.
Best regards.
try adding this in a text object
=IF(ISNULL(GetCurrentSelections()),'Nothing Selected', 'You have Selected ') & GetCurrentSelections(' | ')
If you want to display if any field is selected, use what Alan has suggested but if you want particular field and it's selected value, use below...
I have given below example as customer name. You can change as per your required field name.
=IF(ISNULL(GetFieldSelections([Customer Name])),'No Customer Selected', 'You have Selected ') & GetFieldSelections([Customer Name],' | ')