hatemma said:
I need to remove "." from A.008733 and to select the numbers to the left of
"/" in G089308/A.
Thanks
~~~~~~~~~~~~~~
If the numbers are always this identical format (8 keystrokes with the
"." in the 2nd place) you can use this expression:
left(YourFieldName,1)&right(YourFieldName,6)
and if the 2nd example is always that same format, (9 keystrokes with
the "/" in the 7th position) you can use:
left(YourFieldName,7)
Now, if these are all kept in the same field, you'll have to filter the
operation to avoid changing the wrong entries. For instance:
create a column in your query for:
InStr([sampleno],".")
Use "2" (no quotes) to filter this expression and you'll get only those
records that have a period in the 2nd position. Once this works, you
can then safely run an update query that alters those records.
Likewise, use Instr to filter "/" in the 7th position before you make
that change.
Hope I understood your situation.
Betsy