Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
 dawgfather
		
			dawgfather
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		I have a data set that has a variety of data of any lengths. I am trying to trim off everything before (and including) the 3rd instance of a "\".
Example:
\\share1\test\folder
\\share.sharename.com\item\subfolder\somethingelse
\\server.us.domain.com\unanswered\question\please\help
...should yield:
test\folder
item\subfolder\somethingelse
unanswered\question\please\help
 tincholiver
		
			tincholiver
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		 tincholiver
		
			tincholiver
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		 
					
				
		
 rwunderlich
		
			rwunderlich
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		=mid(Campo, index(Campo, '\',3) + 1)
-Rob
 dawgfather
		
			dawgfather
		
		
		
		
		
		
		
		
	
			
		
		
			
					
		Worked like a charm...thank you!
