You need to add an unbound control to your report and then set its
source to one of the following.
=IIf(IsNull([Practice Name]),[Address1],[Practice Name])
or
= NZ([Practice Name],[Address 1])
'====================================================
John Spencer
Access MVP 2002-2005, 2007-2008
Center for Health Program Development and Management
University of Maryland Baltimore County
'====================================================
It is a bound control. I need my report to show the Practice Name and if the
Practice name is null then I need it to Address 1. Sorry I may have not be
clear enough. Thanks so much for your help/
fredg said:
I am trying to get my repeort to show Practice Name and if it is null to
print address 1. what expression do I need to write to accomplish this.
thanks Grace
Using an unbound control:
=IIf(IsNull([Practice Name]),[Address1],[Practice Name])