Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hello
I know that getselectedcount function returns 0 or >0 number depending whether the user selected values of the desired column in a list box
however when the user selects this value on a chart getselectedcount will be always >1
I need to know if there is selection on a field yes or no
please advise
Use GetFieldselection(Field Name)
to test ...
You can implement whatever the way you want using GetSelectedCount(FieldName)
1.
=GetSelectedCount(FieldName)>0
gives you True(), if there is any selection otherwise False()
2.
=If(GetSelectedCount(FieldName)>0, 'Yes', 'No')
gives you 'Yes', if there is any selection otherwise 'No'
Are you expecting something else?
=If(GetSelectedCount(FieldName), 'Yes', 'No')
should work also
Hope this helps
Regards
Marco