G
Guest
I'm trying to embed an error function in an IIF function, but I can't seem to
get it to work properly. In Excel, I often use a formula like this:
IF(ISERROR(A1*1),"UNKNOWN",A1*1). Essentially, if you're going to give me
an error when I try to do the formula, don't do it. Otherwise, do it.
I'm trying to use a similar expression in Access, but I end up getting
#Error instead of "UNKNOWN." What am I doing wrong? My expression reads:
IIf(IsError(Left([size],1)*1),"UNKNOWN SIZE",[Size])
Thanks in advance for any help you can give me.
get it to work properly. In Excel, I often use a formula like this:
IF(ISERROR(A1*1),"UNKNOWN",A1*1). Essentially, if you're going to give me
an error when I try to do the formula, don't do it. Otherwise, do it.
I'm trying to use a similar expression in Access, but I end up getting
#Error instead of "UNKNOWN." What am I doing wrong? My expression reads:
IIf(IsError(Left([size],1)*1),"UNKNOWN SIZE",[Size])
Thanks in advance for any help you can give me.