Forum Discussion
MCFNeil
9 years agoQrew Captain
To show just the left most characters you can use the formula "Left"
Left([text field], 3) will return the left 3 characters.
Combine that with your if like this:
If(Left([Text Field], 3)="083", "Result if true", "result if false")
Then to combine both of those to evaluate options you can "daisy chain" them together:
If(Left([Text Field], 3)="083", "083",
If(Left([Text Field], 4)="7083", "083", "result if neither is true"))
Left([text field], 3) will return the left 3 characters.
Combine that with your if like this:
If(Left([Text Field], 3)="083", "Result if true", "result if false")
Then to combine both of those to evaluate options you can "daisy chain" them together:
If(Left([Text Field], 3)="083", "083",
If(Left([Text Field], 4)="7083", "083", "result if neither is true"))