Equating a table field to a yes/no answer on a form

J

julie

I am trying to populate a field on a form (ie "Invoiced: ")
with a "yes"/"no" answer based on whether a item has been
sent. The determining factor is a invoiceID from a
invoicing table. So if the invoiceID isNull the field
says "No".
Any help would be appreciated.
 
C

Chris

See if this helps:

[field name].Value = Not IsNull([Invoiced].Value)

Called on AfterUpdate of the invoice Field

Cheers

Chris
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top