Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 tinkerz1
		
			tinkerz1
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		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?
 sunny_talwar
		
			sunny_talwar
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		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)
 
					
				
		
 ecolomer
		
			ecolomer
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		You can use function GetFieldSelections(field) or GetSelelctedCount(field)
 sunny_talwar
		
			sunny_talwar
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		You can use GetSelectedCount() function to check if something has been selected in field or not:
If(GetSelectedCount(FieldName) > 0, DoSomething, DoSomethingElse)
