Excel; how to combine left and right functions -
i have column of text values want delete first 8 , last 4 characters i.e '12345678john1234' become 'john'. know how use left , right functions separately can't seem them working together. mid function won't work in case. possible? thanks
problem solved with:
=mid(a1,9,len(a1)-12)
Comments
Post a Comment