Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to write a formula to get position names in the middle of string

Status
Not open for further replies.

Rbp1226

Technical User
Feb 22, 2008
21
US
Hi,
I am using Crystal Version 2008 against Oracle 10g database
There is a column in database - Position Name

Example:
Y1928.IT SPECIALIST (APPSW).1987452.ARSE.APPR
218168.INFORMATION TECHNOLOGY SPECIALIST.992467.ARSE.APPR

I only want the real name in the middle:

IT SPECIALIST (APPSW)
INFORMATION TECHNOLOGY SPECIALIST

Want get out of before dot in the beginning and after dot in the last few.

Anyone have good idea? Thanks!
 
Something like this:


SPLIT({Table.Field},".")[2]


This is off the top of my head, so apologies in advance for typos/mental errors.
 
fisheromacse,

It works fine. Thanks!

Rbp
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top