SOLVED

Formula to get text after the 7th forward slash

Copper Contributor

Hi,
I'm trying to write a formula that would get the text after the 7th forward slash

Value of cell A6

//nchprv/prod/data/Dept-HR/HR-MBU/Job Evaluation/2021 JE/2021_Finance


Result: Job Evaluation/2021 JE/2021_Finance

1 Reply
best response confirmed by ezflow (Copper Contributor)
Solution

@ezflow 

=RIGHT(A6,LEN(A6)-FIND("|",SUBSTITUTE(A6,"/","|",7)))

 

1 best response

Accepted Solutions
best response confirmed by ezflow (Copper Contributor)
Solution

@ezflow 

=RIGHT(A6,LEN(A6)-FIND("|",SUBSTITUTE(A6,"/","|",7)))

 

View solution in original post