B burrina Registered User. Local time Today, 13:26 Joined May 10, 2014 Messages 972 Feb 13, 2015 #1 I need to check if it has no value and eliminate my error saying it has no value. If [Forms]![frmTimeCards]![frmConfirmation].[Form]![txtHrsRem] = 0 Click to expand...
I need to check if it has no value and eliminate my error saying it has no value. If [Forms]![frmTimeCards]![frmConfirmation].[Form]![txtHrsRem] = 0 Click to expand...
N namliam The Mailman - AWF VIP Local time Today, 20:26 Joined Aug 11, 2003 Messages 11,695 Feb 13, 2015 #2 isnull(yourfield) That what you are looking for? Alternatively you can use the NZ function (or is it NVL?? Too much oracle on the brain sorry)
isnull(yourfield) That what you are looking for? Alternatively you can use the NZ function (or is it NVL?? Too much oracle on the brain sorry)
jdraw Super Moderator Staff member Local time Today, 14:26 Joined Jan 23, 2006 Messages 15,557 Feb 13, 2015 #3 Further to namliam's post, what exactly do you mean by no value? You sample indicates you are checking for 0 --- which could be a valid or default value. IsNull or NZ could check for NULL (unknown value), but depends on what you mean.
Further to namliam's post, what exactly do you mean by no value? You sample indicates you are checking for 0 --- which could be a valid or default value. IsNull or NZ could check for NULL (unknown value), but depends on what you mean.
pbaldy Wino Moderator Staff member Local time Today, 11:26 Joined Aug 30, 2003 Messages 36,272 Feb 13, 2015 #4 Or this if you mean when there are no records: http://access.mvps.org/access/forms/frm0022.htm
B burrina Registered User. Local time Today, 13:26 Joined May 10, 2014 Messages 972 Feb 13, 2015 #5 The criteria was no value in txtHrsRem I did resolve the issue though. Thanks,