Reputation: 25
Here is the formula I am using in calculated column, but it shows value no on column field:
=IF(ISERROR([Sep 22]/[Useful Life (in Years)]/12),"")
Upvotes: 1
Views: 381
Reputation: 2218
Syntax of IF
function is like: IF(<condition>, <true-value>, <false-value>)
. You are missing <false-value>
in your formula.
Try using formula like below:
=IF(ISERROR(([Sep 22]/[Useful Life (in Years)])/12), "Error", "No Error")
Documentation: Examples of common formulas in lists
Upvotes: 1