MID is a DAX function that returns a specified number of characters from the middle of a text string, starting at a given position.
Syntax
MID(
Text,
StartPosition,
NumberOfCharacters
)
Argument | Properties | Description |
---|---|---|
Text | The text string from which you want to extract the characters. | |
StartPosition | The position of the first character you want to extract. Positions start at 1. | |
NumberOfCharacters | The number of characters to return. |