I am trying to return a value for a field and also check if the feild is NULL at the same time with this:
if the feild 'installer' has no data, then it does not show does records. I would like to see those records anyway, so that i know which are null.
what am i doing wrong
Code:
IIf(nz([Forms]![frmInstallSchcedule]![cboInstaller].[Value],"")="",[installer],[Forms]![frmInstallSchcedule]![cboInstaller].[Value])
if the feild 'installer' has no data, then it does not show does records. I would like to see those records anyway, so that i know which are null.
what am i doing wrong