IanWaterman
Programmer
I am building a funding report, where funds can be allocated to specific or groups of regions, each region is designated by a single letter. The regions are entered as a string of letters in a single field
Fund Region
Fund 1 A
Fund2 BC
Fund3 CD
Fund4 AEF
Fund5 BDF
I can design report to give me a report for all funds accessible by a single region eg A will return Funds 1 & 4., ie run the report for each region separately.
However, I can not do a report for all Regions, which will group the funds eg
Region A Funds 1 & 4
Region B Funds 2
Region C Fund 2 & 3
Region D Funds 3 & 5
Etc
All l get is the first instance of the fund
Region A Fund 1 & 4
Region B Fund 2
Region C Fund 3
Ie it assigns fund 2 to region B, and can not be seen in the report by Region C
There are 16 regions and each fund can be assigned to 1 to 7 regions, the data can be added to the Region field in any order, as is can be appended restrospectively. (ie the list need not be alphabetical.
It is not practical run the report 16 times, the only alternative I can think of is to create a temporary table using PLSQL, but I am trying to avoid this.
Thank you
Ian
Fund Region
Fund 1 A
Fund2 BC
Fund3 CD
Fund4 AEF
Fund5 BDF
I can design report to give me a report for all funds accessible by a single region eg A will return Funds 1 & 4., ie run the report for each region separately.
However, I can not do a report for all Regions, which will group the funds eg
Region A Funds 1 & 4
Region B Funds 2
Region C Fund 2 & 3
Region D Funds 3 & 5
Etc
All l get is the first instance of the fund
Region A Fund 1 & 4
Region B Fund 2
Region C Fund 3
Ie it assigns fund 2 to region B, and can not be seen in the report by Region C
There are 16 regions and each fund can be assigned to 1 to 7 regions, the data can be added to the Region field in any order, as is can be appended restrospectively. (ie the list need not be alphabetical.
It is not practical run the report 16 times, the only alternative I can think of is to create a temporary table using PLSQL, but I am trying to avoid this.
Thank you
Ian