473,785 Members | 2,372 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Keeping track of jointly owned assets

I hope there is an easy way to do this...

I'm doing a database which keeps track of things that people or
entities (entities = trusts and companies) own, among other things.

When assets are owned by individuals, its easy. I have a table listing
the various assets, a table listing the various people and entities and
a third table with the IDs of the people/entities and the IDs of the
assets they own.

But I'm not sure how to go about recording an asset which is jointly
owned or owned tenants in common.

I have a column of percentage ownership, its easy to put two
individuals down as owning an asset in 50% shares. A listing of the
assets owned by the group will then show the asset twice with 50%
shares, I was wondering how I might be able to structure the query so
instead of getting e.g.

"$100,000 property at 2 Sesame Street" 50% owned by Ernie as joint
tenants
$100,000 property at 2 Sesame Street" 50% owned by Bert as joint
tenants
Total assets: $100,000"

I would instead get:

"$100,000 property at 2 Sesame Street" 50/50% owned by Ernie and Bert
as joint tenants
Total assets: $100,000"

Thanks...

Travis

Dec 5 '05 #1
6 1373
On 5 Dec 2005 08:36:56 -0800, tr**********@ya hoo.com wrote:

Sounds like a classic many-to-many situation, so you'll have to
redesign your tables.
tblPersons
PersonID (PK)
PersonName

tblAssets
AssetID (PK)
AssetName
AssetValue

tblOwnership
PersonID (PK)
AssetID (PK)
PercentOwnershi p

-Tom.

I hope there is an easy way to do this...

I'm doing a database which keeps track of things that people or
entities (entities = trusts and companies) own, among other things.

When assets are owned by individuals, its easy. I have a table listing
the various assets, a table listing the various people and entities and
a third table with the IDs of the people/entities and the IDs of the
assets they own.

But I'm not sure how to go about recording an asset which is jointly
owned or owned tenants in common.

I have a column of percentage ownership, its easy to put two
individuals down as owning an asset in 50% shares. A listing of the
assets owned by the group will then show the asset twice with 50%
shares, I was wondering how I might be able to structure the query so
instead of getting e.g.

"$100,000 property at 2 Sesame Street" 50% owned by Ernie as joint
tenants
$100,000 property at 2 Sesame Street" 50% owned by Bert as joint
tenants
Total assets: $100,000"

I would instead get:

"$100,000 property at 2 Sesame Street" 50/50% owned by Ernie and Bert
as joint tenants
Total assets: $100,000"

Thanks...

Travis


Dec 5 '05 #2
Hi Tom,

My tables are in fact already set out in the manner which you describe.
I'm just not sure how to get access to report ownership as "joint
ownership" rather than reporting it twice with two 50% owners.

Its a query thing...

Travis

Dec 6 '05 #3
On 5 Dec 2005 18:19:26 -0800, tr**********@ya hoo.com wrote:

OK, you wanted:
"$100,000 property at 2 Sesame Street" 50/50% owned by Ernie and Bert
as joint tenants
Total assets: $100,000"
If you literally want this output from a query, that's rather tricky
because of the concatenation of the two (or N) Ownership records. I
would probably do that using a custom function. The query might look
like this:
select AssetValue, AssetAddress, OwnersConcat(As setID) from tblAssets

The OwnersConcat function:
public function OwnersConcat(by val lngAssetID as Long) as String
dim db as dao.database
dim rs as dao.recordset
dim sql as string
dim strResult as string
set db=currentdb()
'sql to get the list of owners for this AssetID
sql="select PersonName, PercentOwnershi p from tblAssets inner join
tblOwnership on tblAssets.Asset ID = tblOwnership.As setID where
tblAssets.Asset ID=" & lngAssetID
set rs = db.openrecordse t(sql, dbOpenSnapshot, dbForwardOnly)
'Alternatively use a stored parameter query.
while not rs.eof
strResult = strResult & rs!PersonName & " (" & rs!PercentOwner ship &
"%), "
rs.MoveNext
wend
rs.close
set rs=nothing
set db=nothing
strResult=left$ (strResult, len(strResult)-2) 'strip trailing ", "
OwnersConcat = strResult
end function

-Tom.
Hi Tom,

My tables are in fact already set out in the manner which you describe.
I'm just not sure how to get access to report ownership as "joint
ownership" rather than reporting it twice with two 50% owners.

Its a query thing...

Travis


Dec 6 '05 #4

Tom van Stiphout wrote:
On 5 Dec 2005 18:19:26 -0800, tr**********@ya hoo.com wrote:

OK, you wanted:
"$100,000 property at 2 Sesame Street" 50/50% owned by Ernie and Bert
as joint tenants
Total assets: $100,000"
If you literally want this output from a query, that's rather tricky
because of the concatenation of the two (or N) Ownership records. I
would probably do that using a custom function. The query might look
like this:


Thanks for your help. The output I want will actually be like this:

Family Group: Jack and Jill Smith : the name I have given the
group, could also be "The Smith Family"

The Smith Family consists of Jack, Jill, the Hill Water Company Pty Ltd
and the Smith Family Trust.

Jack owns a Toyota worth $10,000, Jill has a Ford worth $12,000. They
own a house together, worth $200,000, their family trust owns a factory
worth $1,000,000 and their business (The Hill Water Company Pty Ltd)
owns $50,000 worth of equipment for drilling wells.
I want to create a table which summarises their assets as follows:

<asset> <value> <owner>
Car (Toyota) $10,000 Jack
Car (Ford) $12,000 Jill
House $200,000 Jack and Jill as 50/50% joint tenants
Factory $1,000,000 Smith Family Trust
Well drilling equipment $50,000 The Hill Water Company Pty Ltd

In other words, a listing of all assets owned by all people in the
group. If it is 100% owned by a single person or entity, just name the
person or entity as owner. If it is owned in some other percentage by
two named entities, state <EntityID> "and" <other EntityID> "as"
<percent owned by entity> "/" <percent owned by other entity> <joint
tenants or tenants in common>.

Travis

Dec 6 '05 #5
And I'll add that sometimes assets are owned fractionally but the rest
is owned by someone I'm not interested in. e.g. 30% share in a farm,
the other 70% is owned by somebody else.

So in that case...

Farm $1,000,000 Jill 30%

Net worth = $300,000

Travis

Dec 6 '05 #6
Travis, if you were to use a structure like the one we were discussing
before, like the relationships diagram in this page:
http://allenbrowne.com/AppHuman.html
you could add a Percentage field to tblGroupClient to indicate that a client
has an xx% share of the group's assets.

You also add an Asset table, with a ClientID (foreign key to
tblClient.Clien tID). In this structure, a "client" can be an individual
(person) or a corporate entity (trust, partnership, ...), so it is *dead*
simple to enter assets that are owned by persons or corporate entities all
in the one Asset table.

You can then query the assets of the individual client, and UNION that with
the assets of any corporate client that the individual client is a member
of, to get a listing of the individual's immediate and derived assets.

The UNION query could then become the RecordSource for report you are asking
for. Your original request in this thread was for a shared and deduplicated
list, so the report would group by AssetID, and you would need a function
call to generate the string that contatenates the individuals who share-own
the asset into a single string. This kind of thing:
Return a concatenated list of sub-record values
at:
http://www.mvps.org/access/modules/mdl0004.htm

HTH

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
<tr**********@y ahoo.com> wrote in message
news:11******** **************@ g14g2000cwa.goo glegroups.com.. .
And I'll add that sometimes assets are owned fractionally but the rest
is owned by someone I'm not interested in. e.g. 30% share in a farm,
the other 70% is owned by somebody else.

So in that case...

Farm $1,000,000 Jill 30%

Net worth = $300,000

Travis

Dec 6 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
3092
by: Sandman | last post by:
Just looking for suggestion on how to do this in my Web application. The goal is to keep track of what a user has and hasn't read and present him or her with new material I am currently doing this by aggregating new content from all databases into a single indexed database and then saving a timestamp in the account database (for the current user) that tells me when the user last read items in the aggregated database.
0
1088
by: godwin | last post by:
hi, I am looking for a Sr.SAP with good knowledge in Fixed Assets / SME. if suitable kindly mail me your resume and rates. Email your resume to : carmelc@gmail.com. REQUIREMENT: Sr. SAP Resource -- Fixed Assets GURU // SME
1
1910
by: Joshua Russell | last post by:
I'm writing some software that opens multiple instances of a single class in new threads. I need a way of keeping track of all these class instances in some kind of collection. I'm basicaly writing an MSN Messenger like application. The threads being, in this case, the chat windows. I would like to be able to access the various referances in a similar way to the following if it can be done... convoThreads.someFunctionInTheClass(); Has...
9
5492
by: Alfred Taylor | last post by:
I'm testing the waters of n-tier development and I ran into a scenario that I'm not sure what the best solution would be. I have a Company object which contains a collection of contacts retrieved from a database. In the presentation layer, the user will be able to add/delete/modify this collection in which case it needs to be synced with the database. The question is basically how best to do this? Aside from overriding the add/remove...
0
1263
by: Utter Newbie | last post by:
I know we have access to log files and web statistics can be pulled from those. But the guy who wants it built was thinking we should keep track of every time a page is hit seperately in MS sql server. He's thinking it would be better for clients to be able to tell how many page hits we're getting whenever they want - mainly concerned with advertising banners (how many views they are getting). I'm concerned about hitting the database for...
1
1005
by: RC | last post by:
I wrote a Web app and someone else now wants a copy of it (and run it on the same server)... and eventually others may want copies as well. Rather than copying all of the gif/assets to each app's folder structure I was wondering what I can to to enable all copies of the application on the server to share the same assets folder. thanks
2
2768
by: metaperl | last post by:
I'm actually taking Microsoft's 2779 and just finished a lab where we kept track of our changes to the database. However, I'm not happy with the scripts interface because it does not tell me the chronological order of my changes to the database. Could someone share with me their technique for keeping track of database changes? I'm actually thinking a set of tables would be best, because sometimes
2
4209
by: slinky | last post by:
I'm getting a error when I open my . aspx in my browser... line 34: da.Fill(ds, "Assets") Here's the error and my entire code for this .aspx.vb is below that ... I need some clues as to what is causing the error... Thanks!!! Server Error in '/' Application. ---------------------------------------------------------------------------­----- Multiple-step OLE DB operation generated errors. Check each OLE DB
10
2281
by: Karlo Lozovina | last post by:
Hi, what's the best way to keep track of user-made subclasses, and instances of those subclasses? I just need a pointer in a right direction... thanks. -- Karlo Lozovina -- Mosor
0
9480
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10147
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10085
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8968
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7494
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6737
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5379
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5511
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3645
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.