Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How can I write a statement to say if a field has a selection then proceed to count.
and then another statment thats say if the field has this item selected then count?
You can use GetSelectedCount() function to check if something has been selected in field or not:
If(GetSelectedCount(FieldName) > 0, DoSomething, DoSomethingElse)
1) if (getselectedcount(yourfield)>0, proceed)
2) if (field='desiredfield', getselectcount(field),else)
You can use function GetFieldSelections(field) or GetSelelctedCount(field)
You can use GetSelectedCount() function to check if something has been selected in field or not:
If(GetSelectedCount(FieldName) > 0, DoSomething, DoSomethingElse)