Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Condition: no selection

Hi, I need a condition thah is true when there are no selection in the document. How can I write this?

3 Replies
Anonymous
Not applicable
Author

Hello,

=if(isnull(GetCurrentSelections()),1,0)

BR

Serhan

prieper
Master II
Master II

shorter: LEN(GETCURRENTSELECTIONS())

HTH Peter

ecolomer
Master II
Master II

Hi,

Try with this:  

=if(IsNull(GetCurrentSelections()), 1, 0)