Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Good People![:)]
Can someone tell me how can i display current selection on a text object.
what i did:
=IF(DISTINCT COUNT(FNAMES)=1,FNAMES,'Make a name select')
the above statement work, but if i want to select more than 1 FNAME, IT display blank.
What must i do?
Thanking you in advance!
Hi,
use
Good luck!
Rainer
This is working for me:
=IF(COUNT(FNAMES) = 1, FNAMES, 'Make a name select')
Hi,
use
Good luck!
Rainer
OK THANKS, It's what i need.
Maybe to forward the question: let me say if there is selection made then display those selection if not give a message like 'Make selection'.
How can i do that?