Click to See Complete Forum and Search --> : Display a field onlt up to a Specific Character


Achett13
December 7th, 2006, 09:23 AM
Hi
Can someone please tell me if there is a function that can be used to print a field only up till a specific character. For ex: I'm trying to print all the student email Id's bu only the characters that fall before the "@" sign.

Thanks
AC

JaganEllis
December 7th, 2006, 03:53 PM
left(x, instr(x, '@') -1)

Achett13
December 8th, 2006, 02:59 PM
Hello
Thank you sooo much. It worked!!

Thanks again
Aparna