Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 mario-sarkis
		
			mario-sarkis
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		hey all,
if i have for example this field key: ''1234|Account|Domici"
i want to transform it into 3 field first one :1234
Second one :Account
Third one : Domici
hope u can help
 sunny_talwar
		
			sunny_talwar
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Try this may be:
SubField(FieldKey, '|', 1) as FirstField,
SubField(FieldKey, '|', 2) as SecondField,
SubField(FieldKey, '|', 3) as ThirdField,
 
					
				
		
 luciancotea
		
			luciancotea
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		see SubField() in help.
 sunny_talwar
		
			sunny_talwar
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Try this may be:
SubField(FieldKey, '|', 1) as FirstField,
SubField(FieldKey, '|', 2) as SecondField,
SubField(FieldKey, '|', 3) as ThirdField,
