You can use a calculated field to get the result you want.
Field: NoSlash: Left([Your TableName].[Your Field Name] & "/", Instr(1,[Your
TableName].[Your Field Name],"/")-1)
NoSlash can be replaced with the name of your field or with any other name
you want to give the calculated field.

Signature
John Spencer
Access MVP 2002-2005, 2007
Center for Health Program Development and Management
University of Maryland Baltimore County
.
> Hello,
>
[quoted text clipped - 39 lines]
>
> cheers
scubadiver - 02 Apr 2007 13:52 GMT
that is the kind of thing I was thinking but there is a problem. Every line
that doesn't have a "/" I am getting an "#Error"
> You can use a calculated field to get the result you want.
>
[quoted text clipped - 47 lines]
> >
> > cheers
scubadiver - 02 Apr 2007 14:18 GMT
I guess the code is assuming that every line has a "/" ??
> You can use a calculated field to get the result you want.
>
[quoted text clipped - 47 lines]
> >
> > cheers
John Spencer - 02 Apr 2007 16:40 GMT
My error, appended the slash in the wrong place.
Field: NoSlash: Left([Your TableName].[Your Field Name] ,
Instr(1,[Your TableName].[Your Field Name] & "/","/")-1)

Signature
John Spencer
Access MVP 2002-2005, 2007
Center for Health Program Development and Management
University of Maryland Baltimore County
.
> I guess the code is assuming that every line has a "/" ??
>
[quoted text clipped - 52 lines]
>> >
>> > cheers
scubadiver - 03 Apr 2007 08:24 GMT
Cheers
> My error, appended the slash in the wrong place.
>
[quoted text clipped - 57 lines]
> >> >
> >> > cheers