PC Review


Reply
Thread Tools Rate Thread

Access template for buy/sell antiques, collect, art profit/loss %

 
 
=?Utf-8?B?Sm9oYW4=?=
Guest
Posts: n/a
 
      5th Apr 2006
I would like to see templates in Access that combine the database management
of Access and the math abilities of Excel.

For instance, I buy and sell antiques, collectibles, comics, artwork, books,
etc, I use Access to record the item bought, date, purchase amount, sales
tax, shipping, other monetary charges, and the name/address/telephone info of
the seller.

Later, when I sell the item, I use the same item record and add the same
info, but for the buyer.

The math formulas needed for inclusion on the form are from table fields.

Calculations needed:

1) what is the dollar amount and percent of change from date of purchase to
date sold for each dollar category and totals? Is there a profit or loss on
the item?

2) How many days transpired between the purchase and selling date? What
percent is that?

3) At the of the fiscal or year end, what are the totals for all recorded
financials? The mean, mode, and median (Appearing on a report).

Many templates in Access simply record data, yet in the programs help and
tools area, little info is given on how to create formulas for calculations.
Same goes for macros.

Your assistance is greatly appreciated. Thank you very kindly!

Johan
San Jose, CA

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/comm....modulesdaovba
 
Reply With Quote
 
 
 
 
Tim Ferguson
Guest
Posts: n/a
 
      6th Apr 2006
=?Utf-8?B?Sm9oYW4=?= <(E-Mail Removed)> wrote in
news:6A41D881-B422-4EED-9254-(E-Mail Removed):

Some of these are trivial in Access anyway:

> 1) what is the dollar amount and percent of change from date of
> purchase to date sold for each dollar category and totals? Is there a
> profit or loss on the item?


This is straightforward arithmetic:

PriceOne = DLookup(something)
PriceTwo = DLookup(somethingelse)
PriceChange = Format(PriceTwo-PriceOne,"percent")
PriceOneInDollars = PriceOne * constDollarsPerPoundToday

etc etc

> 2) How many days transpired between the purchase and selling date?
> What percent is that?


There is a ton of code around for calculating date maths in VBA -- try
googling. In this case it could be as simple as

daysBetween = sellingDate - purchaseDate

although the purists will recommend

daysBetween = DateDiff("d", sellingDate, purchaseDate)

> 3) At the of the fiscal or year end, what are the totals for all
> recorded financials? The mean, mode, and median (Appearing on a
> report).


Median and mode are certainly easier to do in Excel than in Access, but
it's still reasonably easy. Again, google for something like "median MS
Access".

Remember that you can use Excel to read data in a Jet database: all the
DAO or ADO code is available although you have to open the database or
establish a connection yourself (approx three lines of code each).

Hope that helps


Tim F

 
Reply With Quote
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Need Template: Profit and Loss statement for Small Business Rossi3 Microsoft Excel Misc 1 28th Apr 2009 12:41 AM
RE: Need Template: Profit and Loss statement for Small Business Pimamedic Microsoft Excel Misc 0 27th Apr 2009 11:43 PM
Profit & Loss Report in MS Access 2007 =?Utf-8?B?VGFtbSBGb3g=?= Microsoft Access Reports 0 24th Oct 2007 08:03 AM
need template for pwrpnt that would sell a weight loss program =?Utf-8?B?QW5n?= Microsoft Powerpoint 2 27th Sep 2005 10:50 AM
i need template for my cost/profit on materials i sell =?Utf-8?B?QU1DIFBob3Rv?= Microsoft Excel New Users 6 29th Jul 2005 05:08 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 08:38 PM.