I have the following field that I am trying to parse:
SM-13496 (D1050234 - PI )
SM-13496 (D1050234 - Lab )
SM-13496 (D1050234 - Consult )
SM-13496 (D1050234 - CRO )
SM-13496 (D1050234 - CRO/CRU IG )
I want to extract everything after the ' - ' and before the ' )', e.g. PI, Lab, Consult, CRO, CRO/CRU IG
I created this formula, but it isn't working:
Thanks in advance,
Donald
SM-13496 (D1050234 - PI )
SM-13496 (D1050234 - Lab )
SM-13496 (D1050234 - Consult )
SM-13496 (D1050234 - CRO )
SM-13496 (D1050234 - CRO/CRU IG )
I want to extract everything after the ' - ' and before the ' )', e.g. PI, Lab, Consult, CRO, CRO/CRU IG
I created this formula, but it isn't working:
Code:
RIGHT(LEFT([AcctName],CharIndex(')',[AcctName] + ')',1)-1),CharIndex('(',LEFT([AcctName],CharIndex(')',[AcctName] + ')',1)-1)+ '(',1)-1)
Thanks in advance,
Donald