Hello,
Kind of an odd question, I suppose, but I will give an example of the reasoning. I need to come up with a property management report for the head of the company which details the property, the company head's percentage, and a list of percentages for other investors.
I have an ownership_percent table which has the property id, the ownership entity, percentage for that entity, and other information which is not needed. Example follows:
OWNERSHIP_PERCENT
PID ENTITY PERCENT
1 A 25
1 B 25
1 C 50
2 A 51
2 D 49
The piece of the desired report that I cannot quite get my finger looks like the following:
OWNER
PID NAME PERCENT OTHER
1 PROP 1 25 B 25%, C 50%
2 PROP 2 51 D 49%
I can get the owners percentage, but I am struggling to "summarize" the other percentages in a text field for that prop id. Any suggestions?
Thanks.
Kind of an odd question, I suppose, but I will give an example of the reasoning. I need to come up with a property management report for the head of the company which details the property, the company head's percentage, and a list of percentages for other investors.
I have an ownership_percent table which has the property id, the ownership entity, percentage for that entity, and other information which is not needed. Example follows:
OWNERSHIP_PERCENT
PID ENTITY PERCENT
1 A 25
1 B 25
1 C 50
2 A 51
2 D 49
The piece of the desired report that I cannot quite get my finger looks like the following:
OWNER
PID NAME PERCENT OTHER
1 PROP 1 25 B 25%, C 50%
2 PROP 2 51 D 49%
I can get the owners percentage, but I am struggling to "summarize" the other percentages in a text field for that prop id. Any suggestions?
Thanks.