Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 drohm002
		
			drohm002
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		I have a field, "Patient_Type" that I want to put into my multi box. The values inside this field are 1, 2, 3. When a user clicks the drop down of "Patient Type" in the multi box, I want it to display "ER", "ED", "OR" instead of the actual values of 1,2,3....is this possible? How can I assign "ER" to 1, etc.
 sunny_talwar
		
			sunny_talwar
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		May be use an expression like this:
Pick(Patient_Type, 'ER', 'ED', 'OR')
 sunny_talwar
		
			sunny_talwar
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		May be use an expression like this:
Pick(Patient_Type, 'ER', 'ED', 'OR')
 drohm002
		
			drohm002
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		thanks!
