Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
Hope i'm clear
thanks
 
					
				
		
 
					
				
		
try getselectedcount(MES DESCN) <x while x is the number of maximum selections
 
					
				
		
Sorry but doesn't work.
i was thinking of a MIN(GetFieldSelections(Mes_DescN)='01 Ene') but doesn't work either
 
					
				
		
Actually i'd need something that tells that: if at least the '01 Ene' is selected, the expression is shown.
 
					
				
		
I've got it:
Match('01 Ene',Mes_DescN)
Thanks anyway
 
					
				
		
How about this:
if
(left(getfieldselections(MES_DescN),6)='01 Ene' and getselectedcount(MES_DescN)=2,1,0)
This function checks if the first selected value from the field MES_DescN is "01 Ene" and exact one other value is selected.
