Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I'm trying to build up a title dynamically and have the following code to generate the values from my 'Attempt' list box.
This is working, however when nothing is selected at all, I'd like the text to default to 'ALL'.
Is there any way to do this?
Current code I'm using in the textbox expression is below.
Thanks
GetFieldSelections(Attempt)
Like:
If(GetSelectedCount(Attempt)=0, 'All', GetCurrentSelection(Attempt))
try like below
if(getSelectedCount(attempt)>0,getFieldSelections(attempt),'ALL')
Like:
If(GetSelectedCount(Attempt)=0, 'All', GetCurrentSelection(Attempt))
Thanks but now it just seems to stay as 'ALL'. When I do make a selection the values don't show. It just stays as 'ALL'
Any ideas?
This worked. Thanks very much!
if you select any thing in Attempt then that will be shown else 'ALL' will be shown ,
what you are getting and what you want exactly