Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 rabbani_sk
		
			rabbani_sk
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		For Ex. i hav a field named "Product Code",
Product Code
A
B
C
D
E
User wants like this
Product Code
A+B
C
D
E So , My Question is how to add the data values in a field. Any Idea?
 
					
				
		
 swuehl
		
			swuehl
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Use a field expression in your listbox, select <expression> from the field drop down list on general tab (don't mix up with expression on expression tab!)
=if(match([Product Code],'A','B'), 'A+B', [Product Code] )
 
					
				
		
 swuehl
		
			swuehl
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Use a field expression in your listbox, select <expression> from the field drop down list on general tab (don't mix up with expression on expression tab!)
=if(match([Product Code],'A','B'), 'A+B', [Product Code] )
 rabbani_sk
		
			rabbani_sk
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi Swuehl ,
Thanks for Reply..
