This reads out as: IF the field called Date Start ({Date Start}) is not (or does not equal blank != “”) exclamation point, sometimes called a bang, in front of equals means not equals. Then an empty string as two quotes “”. Now when that statement is true, do our DATEADD in the second comma section. And in the last comma section we tell it what to do if our first statement is false so we say to display an empty string with two quotes “”.
So an IF is really simple, IF (1 something is true, 2 do this, 3 if not do this)
Hi,
You can hide the time, by opening the formula editor window and clicking on Formatting.
You can add an IF to not ERROR if there is no date. Something like
This reads out as: IF the field called Date Start ({Date Start}) is not (or does not equal blank != “”) exclamation point, sometimes called a bang, in front of equals means not equals. Then an empty string as two quotes “”. Now when that statement is true, do our DATEADD in the second comma section. And in the last comma section we tell it what to do if our first statement is false so we say to display an empty string with two quotes “”.
So an IF is really simple, IF (1 something is true, 2 do this, 3 if not do this)
I got this error when I tried formatting, do I need to add a DATETIME_FORMAT element to the formula?
You don’t need the empty strings (""). The first one is unnecessary because if there is a date at all, it is considered a “truthy” value. The second empty string as the third parameter of the IF forces the returned result to be a string, which is causing the strange formatting.