Hi @Hendrik_Yang ,
You didn't mention whether the last four digits are always 0000, but here it is both ways:

If always 0000, then the formula is:
VALUE(REGEX_EXTRACT({Orig value}, "Date\\((\\d+)\\+0000\\)", 1))
If those last four change, then use:
VALUE(REGEX_EXTRACT({Orig value}, "Date\\((\\d+)\\+\\d{4}\\)", 1))
Hope that helps!
- Ron
Hi @Hendrik_Yang ,
You didn't mention whether the last four digits are always 0000, but here it is both ways:

If always 0000, then the formula is:
VALUE(REGEX_EXTRACT({Orig value}, "Date\\((\\d+)\\+0000\\)", 1))
If those last four change, then use:
VALUE(REGEX_EXTRACT({Orig value}, "Date\\((\\d+)\\+\\d{4}\\)", 1))
Hope that helps!
- Ron
Hi @Ron_Daniel ,
Brilliant! Thanks a bunch!