Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 asa_runstrom
		
			asa_runstrom
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi
I have list with id and I try to build a button that exklude two of the ids. I manage to exklude one but not two. Hows should I write the code?
 yashdeep
		
			yashdeep
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		step 1 : add 'Select in Field' action and put (ID1|ID2) in expression
step 2 : add 'Select Excluded' action to the same button
this will solve your problem.
 shiveshsingh
		
			shiveshsingh
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		What is the expression that your are using in button actions?
May be you can concat both the ids
= '(' & Concat({< ID-= {'ID1', 'ID2'} >}ID, '|') & ')'
 tresesco
		
			tresesco
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		For multiple values, you could use search string with values separated by pipe symbol. Try like"
=( ID1 | ID2)
 yashdeep
		
			yashdeep
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		step 1 : add 'Select in Field' action and put (ID1|ID2) in expression
step 2 : add 'Select Excluded' action to the same button
this will solve your problem.
