Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Extract second character from a field

Hello,

Do you know how to extract the second character from a field ?

I tried with :

left(FIELD,2) as Result

But it give the two first, I need only the second.

Thanks for your help !

1 Solution

Accepted Solutions
ashfaq_haseeb
Champion III
Champion III

Yo can use below

=mid('ashfaq',2,1)

Regards

ASHFAQ

View solution in original post

3 Replies
alexandros17
Partner - Champion III
Partner - Champion III

Mid(Field,2,1)

ashfaq_haseeb
Champion III
Champion III

Yo can use below

=mid('ashfaq',2,1)

Regards

ASHFAQ

Not applicable
Author

Thanks to both of you