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! Go to 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.
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!
User | Count |
---|---|
17 | |
14 | |
8 | |
7 | |
4 |