MID Function: Difference between revisions

From Planfix
Jump to: navigation, search
(Created page with "The MID function returns a set number of symbols of a text string, starting with a specified position. ''Format:'' MID(text;start_position;number_of_symbols) ''Examples:''...")
 
No edit summary
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
{{#seo:
|title=MID Function
|titlemode=append
|keywords=planfix, Function, MID, reports
|description=MID Function
}}
The MID function returns a set number of symbols of a text string, starting with a specified position.
The MID function returns a set number of symbols of a text string, starting with a specified position.


Line 10: Line 16:
MID(A;5;10)
MID(A;5;10)


MID({{Task.String field}};2;2)
MID(<nowiki>{{Task.String field}}</nowiki>;2;2)





Latest revision as of 07:10, 10 May 2024

The MID function returns a set number of symbols of a text string, starting with a specified position.


Format: MID(text;start_position;number_of_symbols)


Examples:

MID(A;5;10)

MID({{Task.String field}};2;2)


Go To