What's the best practice for changing/hiding the default minimum date "12/31/1969 16:00:00?"

I have a โ€œdueโ€ column that is calculated after a certain action takes place (effectively a โ€œreturn date.โ€) Right now, the default that shows on the sheet and in the app is โ€œ12/31/1969 16:00:00.โ€

What is the best way to have that line be blank in the various views, or is there yet a better idea to illustrate that it is due โ€œnowโ€ that I havenโ€™t thought of?

Thanks!

Solved Solved
0 4 145
1 ACCEPTED SOLUTION

Oh I see. Use an IFS() expression in your App Formula. Something like:

IFS(
  ISNOTBLANK( [Residual] ) ,
  [Last Action] + [Residual]
)

This will return a blank value when you donโ€™t need the calculation.
Nevermind about the initial value.

View solution in original post

4 REPLIES 4

You should be able to just leave the column blank. Is there some Initial Value set for that column?

I have a formula computing the value, so I suppose the โ€œdefaultโ€ output if there is no โ€œLast Actionโ€ or โ€œResidualโ€ (per my columns) is 12/31/1969?

If I add โ€œโ€ in the initial value, will it create an issue with my formula?

Oh I see. Use an IFS() expression in your App Formula. Something like:

IFS(
  ISNOTBLANK( [Residual] ) ,
  [Last Action] + [Residual]
)

This will return a blank value when you donโ€™t need the calculation.
Nevermind about the initial value.

Thanks, Marc!

Top Labels in this Space