Hello all:
I'm using CR11 to pull several tables, and I'm having trouble getting the right data onto the list. The table I end up with (after joins) looks something like this, with other fields:
Category | Name | Date | Result
1 | Risk A | 1/1/2007 | True
1 | Risk B | 1/1/2008 | False
1 | Risk C | 1/1/2008 | True
...
I'm trying to show each Category and Name, but filter the data shown by date. On my report, I want to see this:
Category: 1
Risk A - 0 True 0 False
Risk B - 0 True 1 False
Risk C - 1 True 0 False
...
The problem is, when I do the record selection, it removes the Names which do not have a value in the date range, so I end up with Risks B and C. I think my solution may be in a logic structure, but I'm not sure. I was going down the lines of "not isnull({Name}) or {Date} = {?prmDate}", but this does not work obviously. Any ideas would be great, thanks!
I'm using CR11 to pull several tables, and I'm having trouble getting the right data onto the list. The table I end up with (after joins) looks something like this, with other fields:
Category | Name | Date | Result
1 | Risk A | 1/1/2007 | True
1 | Risk B | 1/1/2008 | False
1 | Risk C | 1/1/2008 | True
...
I'm trying to show each Category and Name, but filter the data shown by date. On my report, I want to see this:
Category: 1
Risk A - 0 True 0 False
Risk B - 0 True 1 False
Risk C - 1 True 0 False
...
The problem is, when I do the record selection, it removes the Names which do not have a value in the date range, so I end up with Risks B and C. I think my solution may be in a logic structure, but I'm not sure. I was going down the lines of "not isnull({Name}) or {Date} = {?prmDate}", but this does not work obviously. Any ideas would be great, thanks!