Can anyone explain to me the difference between these two expressions as written below, if any? I am trying to understand the subtle differences between UPDATEIF() and IF().
UPDATEIF(A1=“YES”,A1)
IF(A1=“YES”,A1)
In what situation would these two expressions as written above give different answers? Or rather, is there a situation where one expression would make a field value change, but not the other?
Note: I realize that IF() has an ELSE value that UPDATEIF() does not. I am just trying to understand if there are any differences in what triggers the two functions to work.