Good evening  
	I was looking around the forum if I could find a function that allows to convert a string into a 2 dimensional array... 
	The first column of the array is always the same, but the rows could change... 
	I have a pattern like:  
	Column A|Column B 
	Static Text 1|Data 1 
	Static Text 2|Data 2 
	Static Text 3|Data 3 
	Static Text 4|Data 4  
	Where, Static Text (1...4) will be always the same, and I don't want to change them... But, Data 1...4 are dynamic fields... So, I could have the pattern above AND I coould have the pattern I'm going to show you right below   
	Column A|Column B 
	Static Text 1|Data 1 
	Static Text 2|Data 2 
	Static Text 3|Data 3 
	Static Text 4|Data 4 
	Static Text 1|Data 5 
	Static Text 2|Data 6 
	Static Text 3|Data 7 
	Static Text 4|Data 8  
	How can I do in this case?  
	Thanks for everyone's help