A
Addy
Hello there,
I have a partial solution to a problem I am having.
I have a field called description. In that field I want to check if it
includes some characters and remove them. If it does not then all is
fine.
Description
------------------
Apple II TXT>>
Apple II >>
Apple II
Apple II TXT
Orange TXT>>
Orange >>
Orange
Orange >>>>>>
Basically I want to remove the ">>" and "TXT" from the fields and have
the following output.
Description2
------------------
Apple II
Apple II
Apple II
Apple II
Orange
Orange
Orange
Orange
I have tried New:
Left([FunctLocDescrip],InStr([FunctLocDescrip],">")-1) in the query
builder.
But it gives an error everytime the field DOES NOT include the extra
characters.
Any one with suggestions???
I have a partial solution to a problem I am having.
I have a field called description. In that field I want to check if it
includes some characters and remove them. If it does not then all is
fine.
Description
------------------
Apple II TXT>>
Apple II >>
Apple II
Apple II TXT
Orange TXT>>
Orange >>
Orange
Orange >>>>>>
Basically I want to remove the ">>" and "TXT" from the fields and have
the following output.
Description2
------------------
Apple II
Apple II
Apple II
Apple II
Orange
Orange
Orange
Orange
I have tried New:
Left([FunctLocDescrip],InStr([FunctLocDescrip],">")-1) in the query
builder.
But it gives an error everytime the field DOES NOT include the extra
characters.
Any one with suggestions???