Combing FIND and RIGHT functions I think

junkforhr

Board Regular
Joined
Dec 16, 2009
Messages
115
Office Version
  1. 365
Platform
  1. Windows
I have a sample below.

I have a string of text and what I'm after is to return the value "H" for the 1st entry below, but, ignoring the first 3 characters and for the 2nd entry return that value of "T",ignoring the 1st 3 characters.

I've tried combing the FIND and RIGHT functions without success.

ValueHT
ABTpolHasdasdasdH
POHpolTasdasdasdT
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Do you mean like this?
Book1
ABC
1ValueHT
2ABTpolHasdasdasdH 
3POHpolTasdasdasd T
Sheet2
Cell Formulas
RangeFormula
B2:C3B2=IFERROR(MID($A2,FIND(B$1,$A2,4),1),"")
 
Upvote 0
Solution
A variation ..

23 06 05.xlsm
ABC
1ValueHT
2ABTpolHasdasdasdH 
3POHpolTasdasdasd T
Sheet2
Cell Formulas
RangeFormula
B2:C3B2=MID($A2,FIND(B$1,$A2&B$1,4),1)
 
Upvote 0

Forum statistics

Threads
1,215,771
Messages
6,126,797
Members
449,337
Latest member
BBV123

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top