V
Victoria
I need to pull text from a parenthesis where there is text on both sides of
the desired info. For example
11294GGsewrf PPO asfdio(dfjios)sd/12
I'm using the function below, but it is not taking off the right side of the
data. What can I do to remove that as well? I'd like to continue to do this
as a function within a query.
Thanks.
-Victoria
Plan_Code:
Mid([tbl1]![Plan],InStr(1,[tbl1]![Plan],"(",1)+1,Len([tbl1]![Plan])-(InStr(1,[tbl1]![Plan],"(",1)+1))
the desired info. For example
11294GGsewrf PPO asfdio(dfjios)sd/12
I'm using the function below, but it is not taking off the right side of the
data. What can I do to remove that as well? I'd like to continue to do this
as a function within a query.
Thanks.
-Victoria
Plan_Code:
Mid([tbl1]![Plan],InStr(1,[tbl1]![Plan],"(",1)+1,Len([tbl1]![Plan])-(InStr(1,[tbl1]![Plan],"(",1)+1))