Solved
IF Formula fail
I think this formula
IF({Last Deployment} = 'MM/DD/YY', 'MM/DD/YY', "*")
says:
IF (the value of the field Last Deployment is a date, show the date, otherwise pop in an asterisk (instead of #ERROR!))
But what I’m getting now is either an * or #ERROR! - pretty much the opposite of what I am trying to accomplish.
Help!
Best answer by BuildForAT
No worries! Thanks for clarifying.
In that case, you can use this formula in your new formula field:
IF(ISERROR({Last Deployment}), "*", {Last Deployment})Since {Last Deployment} is already a string we don’t need to do DATETIME_FORMAT like I originally suggested.
If you would like to fix {Last Deployment} directly, that’s possible but the formula gets a bit ugly!
Also, may I ask why you’re using Arrayslice here instead of a Rollup field like this:

You can use the MAX function to get the latest date (if that’s what you’re aiming for)
Login to the community
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.

