mattdrinks
Technical User
I am using Crystal Reports XI and have two tables joined by a left outer join.
Quick sample data:
I can make a quick report something like this:
But when I use the Select Expert to add some criteria to Table A (eg. Field 1 =>2000) then the null records are no longer shown.
Report displays:
I understand that if the criteria is based on a field in Table B then I need something like:
But my criteria is based on a field from Table A.
Does anyone know how I can get the Null records to display when I have selection based on a field from Table A?
Matt.
Quick sample data:
Code:
Table A Table B
Field1 Field1 Field2
1000 1000 5.00
2000 1000 6.00
3000 1000 4.50
4000 3000 10.50
5000 5000 11.25
I can make a quick report something like this:
Code:
1000 1000 5.00
1000 1000 6.00
1000 1000 4.50
2000
3000 3000 10.50
4000
5000 5000 11.25
But when I use the Select Expert to add some criteria to Table A (eg. Field 1 =>2000) then the null records are no longer shown.
Report displays:
Code:
3000 3000 10.50
5000 5000 11.25
I understand that if the criteria is based on a field in Table B then I need something like:
Code:
IsNull(Field2) or Field2 = "10.00"
Does anyone know how I can get the Null records to display when I have selection based on a field from Table A?
Matt.