I have the following situation:
Table A
Table B
Table B includes ALL fields in Table A PLUS there are approx 20 custom fields added based on a DTS process that runs.
What I am wanting to do is create some validation/exception reports to show...
1. SHOW Ticket # where {TableA.Field1}<>{TableB.Field1}, for some reason if I just try to do this in a formula it doesn't work.
2. SHOW Ticket # where any of the custom fields on Table B are null, thinking something like
if isnull ({tableb.customfield1})
then "NULL Custom Field 1"
or if isnull ({tableb.customfield2})
then "NULL Custom Field 2"
or if isnull ({tableb.customfield3})
then "NULL Custom Field 3"
and so on and so on, would like to be able to do this on 1 report that looks like
Ticket #
12345678 NULL Custom Field 1
23456789 NULL Custom Field 1, NULL Custom Field 2
34567890 NULL Custom Field 1, NULL Custom Field 2, NULL Custom Field 3
etc.....
Table A
Table B
Table B includes ALL fields in Table A PLUS there are approx 20 custom fields added based on a DTS process that runs.
What I am wanting to do is create some validation/exception reports to show...
1. SHOW Ticket # where {TableA.Field1}<>{TableB.Field1}, for some reason if I just try to do this in a formula it doesn't work.
2. SHOW Ticket # where any of the custom fields on Table B are null, thinking something like
if isnull ({tableb.customfield1})
then "NULL Custom Field 1"
or if isnull ({tableb.customfield2})
then "NULL Custom Field 2"
or if isnull ({tableb.customfield3})
then "NULL Custom Field 3"
and so on and so on, would like to be able to do this on 1 report that looks like
Ticket #
12345678 NULL Custom Field 1
23456789 NULL Custom Field 1, NULL Custom Field 2
34567890 NULL Custom Field 1, NULL Custom Field 2, NULL Custom Field 3
etc.....