Date with in a sentence
Robert S Fike
✭✭✭
I get data loaded that has a text with it. I want to write a formula to pull the date out.
Trying to use this formula, but getting #UNPARSEABLE
=VALUE (LEFT ([Daily Rain Total]@row, FIND (" ", [Daily Rain Total]@row)-1))
Best Answer
-
Give this a try.
=LEFT([Daily Rain Total]@row, FIND(" ", [Daily Rain Total]@row) - 1)
Hope that helps,
Dave
Answers
-
Give this a try.
=LEFT([Daily Rain Total]@row, FIND(" ", [Daily Rain Total]@row) - 1)
Hope that helps,
Dave
-
Thank you very much
-
Could not get that to work, but you did point me in the right direction.
This is what i got to work.
=VALUE(LEFT([Daily Rain Total]@row, 4))