On the coding side, it's easy. Use polymorphisim to have different objects for each money amount.
What I gather is that you need to persist this to a database too. While you didn't exactly say that, the heavy use of words like "table" "data" and "rows" hints that your are concerned with database storage. To persist polymorphic data in a database you only have a few options:
- Single Table Inheritance - using one table to store all classes in a polymorphic hierarchy.
- Concrete Table Inheritance - using one table for each concrete subclass.
- Class Table Inheritance - Using one table for the common superclass and one table for each subclass (concrete or otherwise) storing fields as they are defined in the object oriented hierarchy.
The advantages to #1 is that you have only one table to search, the downside is that most of that table will be a big block of variant data. Often a field with the "variant" parts becomes an XML document stored in a row. In either case, if the invariant (always there) fields are to be searched, it is easy; but, if the variant fields are to be searched, it gets hard.
The advantages to #2 is that database queries are easy with standard SQL tools. The downside is that you have to take special precautions not to store the same invariant keys in the collection of tables twice, as this would be saying that account #5 is both a $5 account and a $50,000 account.
The advantages to #3 is that database structure mimics the class heirarchy, which can ease the key collision issues in #2 and yet still provide better SQL querying than #1. The downside is that to get any single object, you will have to perform a join across a foreign key (performance hit).
In short, no silver bullets. However, perhaps you didn't really mean database tables, in which case it's not an issue.