Noname > 10-02-12, 11:49 AM
Function EZ(myVal As Variant)
If IsError(myVal) Then
EZ = ""
Else
EZ = myVal
End If
End Function 
| A | B | 
|---|---|
| A | 5 | 
| B | 6 | 
| C | 7 | 
| D | 8 | 
domfootwear > 10-02-12, 01:40 PM
Function EZ(myVal As Variant, TraVe As Variant)
If IsError(myVal) Then
    EZ = TraVe
  Else
    EZ = myVal
End If
End Function