Hello all,
I am creating a report which prints one customer based on customer ID from Access. It works well until I add a formula field. When the formula field in on the report I get many duplicates.
The layout is;
Cust ID
Name
Addr
PPR Code ## Desc
For each client code a desription is pulled from another table. There are no natural relations ships between the 2 tables. I created a link between the codes from table A to Table B.
The Desc formula I am using is:
if not (isnull({Master.PPR})) then
if {CodeLookupsActive.TableName}="MASTER" and
{CodeLookupsActive.FieldName}="PPR" and
{CodeLookupsActive.code2}={Master.PPR} then
{CodeLookupsActive.Description}
Once the formula field is added to the report I get multiple duplicate records. There is only one record in Table A.
Thanks
I am creating a report which prints one customer based on customer ID from Access. It works well until I add a formula field. When the formula field in on the report I get many duplicates.
The layout is;
Cust ID
Name
Addr
PPR Code ## Desc
For each client code a desription is pulled from another table. There are no natural relations ships between the 2 tables. I created a link between the codes from table A to Table B.
The Desc formula I am using is:
if not (isnull({Master.PPR})) then
if {CodeLookupsActive.TableName}="MASTER" and
{CodeLookupsActive.FieldName}="PPR" and
{CodeLookupsActive.code2}={Master.PPR} then
{CodeLookupsActive.Description}
Once the formula field is added to the report I get multiple duplicate records. There is only one record in Table A.
Thanks