Reputation: 13
I've tried all types of date extraction from this timestamp but nothing works.
Data samples:
Tried MOD, = Time,Minute, and Timevalue
Does anyone have any idea?
Tried MOD, = Time,Minute, and Timevalue. Expected to extract the date but it doesn't.
Upvotes: 0
Views: 39
Reputation: 1
try:
=INDEX(TEXT(IFNA(1*REGEXEXTRACT(TO_TEXT(A1:A),
"(\w+ \d+ \d{4})" ), ""), "dd/mm/e"))
Upvotes: 1
Reputation: 18794
Use regexextract()
, like this:
=to_date( value( regexextract( to_text(A2), "^\w+ (\w+ \w+ \w+)" ) ) )
Upvotes: 0