Forum Discussion

Tony2021's avatar
Tony2021
Steel Contributor
Jan 19, 2025
Solved

#Error in unbound text box

Hello Experts, I am trying to display nothing instead of #Error being displayed in an unbound text box.  Its only showing on the new record row.  The below is not working.  It still displays #Erro...
  • Gustav_Brock's avatar
    Jan 20, 2025

    Use Nz to return a non-existing value for letterOfCreditID if it is Null:

    =DLookUp("Beneficiary","[tblLetterOfCredit]","[LCID]=" & Nz([letterOfCreditID],0) & "")