Mid Function

Description:
A sub-text of a text that is specified by a number of characters at a specified position.
Returns:
Text
Parameters:
Parameter
Data Type
Description
1
Text
The text.
2
Whole Number
The position at which the sub-text starts.
3
Whole Number
The number of characters required.
Example:
When using functions inside a field, remember the field brackets:
{Mid(MatterNumber, 3, 5)}
Expression
Result
Mid( "abcde", 2, 3 )
"bcd"

Related content