Copy Substring from a string

Hi,
I have a Cell Value "SG1+PA20-0328-01 D PCBA,15"DISP,5WIRE". How can i just copy in a new cell a value which starts after '+' and ends before first space. (PA20-0328-01).
Thank you...

Vishesh's picture

Suppose your value is in Cell

Suppose your value is in Cell A1 then the required formula is

="("&MID(A1,FIND("+",A1)+1,FIND(" ",A1)-FIND("+",A1)-1)&")"