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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

extract everything to right of "."

Status
Not open for further replies.

John1Chr

Technical User
Joined
Sep 24, 2005
Messages
218
Location
US
I have a field called [Feature] and I want to extract everything to the right of the period.

1A. Bunker Undesignated (Includes concrete)
1B. Bridge identified
1C. Interchange

I'm able to extract the left side easily using:

Left([Feature],InStrRev([Feature],".")-1)

I'm sure there's a simple configuration of a command but I'm stumped right now.

 
mid([Feature],InStr([Feature],".")+1)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top