arrays

B

Beatrix

Hi All!

(this is in connection with my question before)
How do I cut the first five characters from an expression?

cut(Left([expr];5)) or? :)
 
M

Marshall Barton

Beatrix said:
(this is in connection with my question before)
How do I cut the first five characters from an expression?

cut(Left([expr];5)) or? :)


I do not understand your use of the word "cut".

Following Jeff's example in your other thread, maybe this
will help:
Expr: Mid([YourField], Instr([YourField]," ") + 1)
 
Top