I have some excel data with shows up in this format:
<tbody>
PT1H11M47S
</tbody>
I would like to extract the number before the letter "H", in this example result needs to be 1
I can do this by using two formulas:
=TRIM(SUBSTITUTE(P16;"PT";"")) removes PT ---> 1H11M47S...