I have a string below which updated every 10 or so minutes.
Last Updated as of 8:22 am Auguest 30th blah blah blah
I am interested only in 8:22 am
. I know I can use =MID()
& =find()
to grab it but does anybody have easier way to do it ?
I have a string below which updated every 10 or so minutes.
Last Updated as of 8:22 am Auguest 30th blah blah blah
I am interested only in 8:22 am
. I know I can use =MID()
& =find()
to grab it but does anybody have easier way to do it ?
Since Last Updated as of
is always
you can use = Mid(A1,20,8)
for A1 Cell
Since the width of the time will only vary by one character, I think this works for you:
=TRIM(LEFT(SUBSTITUTE(A1,"Last Updated as of ",""),8))
MID
and FIND
would be the fastest/easiest way to pull that information out.