In your "AND", try adding another criteria of `{EST} != "NO RIGHTS"` so that your "DATETIME_FORMAT" will only run on dates?
In your "AND", try adding another criteria of `{EST} != "NO RIGHTS"` so that your "DATETIME_FORMAT" will only run on dates?
I considered that but unfortunately there's no consistency to what text will be used in that space and since this data comes from another team, I'm trying to find a work around without them having to change their process. Otherwise I think that would be a great solution!
I considered that but unfortunately there's no consistency to what text will be used in that space and since this data comes from another team, I'm trying to find a work around without them having to change their process. Otherwise I think that would be a great solution!
Ah I see! In that case, what if we used an "IF" to check if the "DATETIME_FORMAT" function results in an error like so:
IF(
NOT(
ISERROR(
DATETIME_FORMAT(Date,"YYYY")
)
),
DATETIME_FORMAT(Date,"YYYY")
)