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...
ExcelExperts.comExcel Consultancy, VBA Consultancy, Training and Tips Call:+442081234832 |
|
Excel / VBA ConsultancyFree Training VideosFree SpreadsheetsExcel / VBA JobsNavigationWho's onlineThere are currently 0 users and 416 guests online.
New Excel Experts
Current Excel / VBA Jobs |
Copy Substring from a stringHi, |
Highest Ranked Users
Recent Blogs
ForumsRecent comments
User login |
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)&")"