Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
I don't want to show particular data in a list box.
I have tried this but not working for me.
in the expression pane
if(ListBoxfield='D',Null(),ListboxField)
what it does for me is:
A A
B B
C C
D -
what I want is :
A
B
C
Please Help.
Regards,
Gaurav Tyagi
 tresesco
		
			tresesco
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		 tresesco
		
			tresesco
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Try:
if(ListBoxfield<>'D',ListboxField)
 
					
				
		
Still the same result, No change.
I'm writing it in the second tab i.e. Expression Pane is it the place where I have to write it?
 tresesco
		
			tresesco
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		No. See the screenshot:

 
					
				
		
TAKE ONE LIST BOX
AND GOTO LIST BOX PROPERTY AND IN THE EXPRESSION TYPE THE BELOW CODE(
=IF(OrderNo <>'D', OrderNo)
CHECK THE SCREEN SHOT (ATTACHED).

 
					
				
		
 suniljain
		
			suniljain
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		You can use following expression
if(Len(ListBoxfield)>1,ListboxField)
 
					
				
		
I didn't scroldown that much before have too many fields in the table 
Thanks
