Function call
|
Val
|
Length
|
Result
|
Notes
|
---|---|---|---|---|
Right(Val, Length)
|
24 St John's Road, Barnes
|
6
|
Barnes
|
The return value is the last six characters in the supplied string.
|
Right(Val, Length)
|
{4,2,9,15,6,7}
|
1
|
{7}
|
The return value is the last category in the supplied category list.
|
Right(Val, Length)
|
Split("The quick brown fox")
|
3
|
{quick,brown,fox}
|
The return value is the last three elements in the supplied array. See Split for more information.
|