G
Guest
Hello,
I have a report that is made up of a summation of several tables, each with
one or two matching fields. The result is a summary table with the
culmination of all the fields in each of the individual tables. So, for
example, if I have two tables, one labeled "ABC" and one labeled "CDE", they
would each share column "C".
So my report simply queries this table and outputs the results to a report
with column headers:
A B C D E
The problem is that for those lines that have results from table "ABC", I
get zeros where blanks should be in columns "D E" and the same is true for
table "CDE" since columns "A B" should be blank, not zero.
Instead of getting:
A B C D E
======
2 4
9 7
5 1
I am getting:
A B C D E
======
2 4 0 0
0 0 9 7
5 1 0 0
I have tried using Nz(, " " ) and IIF(<>"", , " ")
But neither work for me. If anyone has any advice, I would greatly
appreciate it so I can stop ramming my face into the corner of my desk
looking for a revelation.
Thanks for your time.
Lance
I have a report that is made up of a summation of several tables, each with
one or two matching fields. The result is a summary table with the
culmination of all the fields in each of the individual tables. So, for
example, if I have two tables, one labeled "ABC" and one labeled "CDE", they
would each share column "C".
So my report simply queries this table and outputs the results to a report
with column headers:
A B C D E
The problem is that for those lines that have results from table "ABC", I
get zeros where blanks should be in columns "D E" and the same is true for
table "CDE" since columns "A B" should be blank, not zero.
Instead of getting:
A B C D E
======
2 4
9 7
5 1
I am getting:
A B C D E
======
2 4 0 0
0 0 9 7
5 1 0 0
I have tried using Nz(, " " ) and IIF(<>"", , " ")
But neither work for me. If anyone has any advice, I would greatly
appreciate it so I can stop ramming my face into the corner of my desk
looking for a revelation.
Thanks for your time.
Lance