(string Text, int start_num, int num_chars)
MID returns a specific number of characters from a text string, starting at the position
you specify, based on the number of characters you specify.
Example: MID(QWERTY123,4,2) returns (RT).
Text: Required. The text string containing the characters you want to extract.
Example
Extract three characters, starting from position 3, in string:
mid(&SelltoPostCode,2,4)
Comments
Please sign in to leave a comment.