access 2002 vs 2003

  • Thread starter Thread starter hatemma
  • Start date Start date
H

hatemma

I need help please. Some features of my database work fine in work computers
that run access 2002 but not 2003.
eg
=IIf([Forms]![frm_tabs]![CXR date]>([Forms]![frm_tabs]![Fm_MDT]![date of
meeting]),"",[Forms]![frm_tabs]![CXR details])
also if I try to open report based on date on the form, I get an empty
report with no data.
It seems that the functions that dont work all linked to on control in a
subform [date of meeting].
Please help
 
I need help please. Some features of my database work fine in work computers
that run access 2002 but not 2003.
eg
=IIf([Forms]![frm_tabs]![CXR date]>([Forms]![frm_tabs]![Fm_MDT]![date of
meeting]),"",[Forms]![frm_tabs]![CXR details])
also if I try to open report based on date on the form, I get an empty
report with no data.
It seems that the functions that dont work all linked to on control in a
subform [date of meeting].
Please help

Try using the full, unambiguous subform reference:

[Forms]![frm_tabs]![Fm_MDT].Form![date of meeting]

If either of the form references might be NULL you may need to use NZ() to
replace the null value with a meaningful date.

John W. Vinson [MVP]
 
Thanks John, I have changed the reference to the subform as adviced and it
has worked.
Many thanks again

John W. Vinson said:
I need help please. Some features of my database work fine in work computers
that run access 2002 but not 2003.
eg
=IIf([Forms]![frm_tabs]![CXR date]>([Forms]![frm_tabs]![Fm_MDT]![date of
meeting]),"",[Forms]![frm_tabs]![CXR details])
also if I try to open report based on date on the form, I get an empty
report with no data.
It seems that the functions that dont work all linked to on control in a
subform [date of meeting].
Please help

Try using the full, unambiguous subform reference:

[Forms]![frm_tabs]![Fm_MDT].Form![date of meeting]

If either of the form references might be NULL you may need to use NZ() to
replace the null value with a meaningful date.

John W. Vinson [MVP]
 

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

Similar Threads


Back
Top