I'm using Crystal XI and I need to have all the names in a menu table display even if there is no match in another table.
This is what I have:
Menu_Problem table left joined to Cases table on menu_problem.value=cases.problem
I'm grouping on the field menu_problem.label and have running totals to summarize how the case was closed.
Sample Data
This is what I get:
problem Close Code A Close Code B Total
01 7 144 151
02 4 6 10
03 0 1 1
07 3 2 5
This is what I'd like to get:
problem CloseCodeA CloseCodeB Total
01 7 144 151
02 4 6 10
03 0 1 1
04 0 0 0
05 0 0 0
06 0 0 0
07 3 2 5
Is there a way in to accomplish this?
This is what I have:
Menu_Problem table left joined to Cases table on menu_problem.value=cases.problem
I'm grouping on the field menu_problem.label and have running totals to summarize how the case was closed.
Sample Data
This is what I get:
problem Close Code A Close Code B Total
01 7 144 151
02 4 6 10
03 0 1 1
07 3 2 5
This is what I'd like to get:
problem CloseCodeA CloseCodeB Total
01 7 144 151
02 4 6 10
03 0 1 1
04 0 0 0
05 0 0 0
06 0 0 0
07 3 2 5
Is there a way in to accomplish this?