Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 
					
				
		
I am creating a subfields off of MsgCategories and I am having an issue where the Fields I believe hold the correct information, however they are not showing it in The Listbox, In Category1a there are Fields that hold values but do not show up in listboxes, but when I select them they are shown with the correct selected data in the current selections box and table box but not in the list box 
My Second Isssue is that MsgCategories is doing the same thing but for fields that carry numbers in the beginning and only contain one field
I am trying to show all data , and split them by delimiter ; . I am using MsgCategories, SUBFIELD(MsgCategories, ';') AS Category1a, SUBFIELD(MsgCategories, ';', 2) AS Category1b, As my Script , Is there something wrong? Thank You.
 
					
				
		
 rwunderlich
		
			rwunderlich
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		It looks like you may be missing the "1" in
SUBFIELD(MsgCategories, ';', 1) AS Category1a,
-Rob
 MK_QSL
		
			MK_QSL
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Kindly provide some sample data...of MsgCategories
 mahesh_agrawal
		
			mahesh_agrawal
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Hi,
Could you share your application?
It would be easy to analyze the issue.
 
					
				
		
 rwunderlich
		
			rwunderlich
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		It looks like you may be missing the "1" in
SUBFIELD(MsgCategories, ';', 1) AS Category1a,
-Rob
 PradeepReddy
		
			PradeepReddy
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Try..
SUBFIELD(MsgCategories, ';', 1) AS Category1a,
SUBFIELD(MsgCategories, ';', 2) AS Category1b
 
					
				
		
Here it is ,
 
					
				
		
It's in there but same problem
 PradeepReddy
		
			PradeepReddy
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		If the ';' is not found it is treating as Category1a, otherwise it is splitting into 2 fields...(Category1a, Category1a)
I have done some changes in List box itself... PFA
 MK_QSL
		
			MK_QSL
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		use this...
IF(Index(MsgCategories,';')>0,SubField(MsgCategories,';',1),MsgCategories) as Category1a,
IF(INDEX(MsgCategories,';')>0,SubField(MsgCategories,';',2),'') as Category1b,
 
					
				
		
Tried your suggestions still same thing
