<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Phil's Techno Talk &#187; Jon Watson</title>
	<atom:link href="http://www.philstechnotalk.com/author/jon-watson/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.philstechnotalk.com</link>
	<description>Computer and Technology Articles</description>
	<pubDate>Fri, 22 Aug 2008 14:17:20 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>MS Access Tip - Quick Cash Flow Calculator</title>
		<link>http://www.articlecontentking.com/business/customer-service/ms-access-tip-quick-cash-flow-calculator.php</link>
		<comments>http://www.articlecontentking.com/business/customer-service/ms-access-tip-quick-cash-flow-calculator.php#comments</comments>
		<pubDate>Tue, 03 Jun 2008 12:55:18 +0000</pubDate>
		<dc:creator>Jon Watson</dc:creator>
		
		<category><![CDATA[Computers]]></category>

		<category><![CDATA[Internet]]></category>

		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.articlecontentking.com/?p=173</guid>
		<description><![CDATA[Access Success Story: Document Scanner Interface
Access Tip: Quick &#8220;Cash Flow&#8221; analysis tool
This is a simple tool but very handy Access tool that you can use to estimate how your cash or budget is going to expend over time. I use it and it is pretty handy, especially if your deposits and debits are irregular.
To use [...]]]></description>
			<content:encoded><![CDATA[<p>Access Success Story: Document Scanner Interface</p>
<p>Access Tip: Quick &#8220;Cash Flow&#8221; analysis tool</p>
<p>This is a simple tool but very handy Access tool that you can use to estimate how your cash or budget is going to expend over time. I use it and it is pretty handy, especially if your deposits and debits are irregular.</p>
<p>To use the tool simply enter all of your credits and debits in the cash amount column along with the date that the transaction will occur. There is a place for a description of the transaction as well. For example, if you know your payroll each month, enter the amount ahead of time with the dates as negative amounts in the &#8220;cash&#8221; column. I estimate my expenses and other costs and enter those amounts as well. Now that I have my regular expenses entered I can instantly see the impact that a credit will have on my cash balance in the future, or see how long the money will last. Again, once the data is entered you can instantly get a look at the impact of a date change for a payment s going to affect your cash balance out in the future.</p>
<p>You can change any future amounts and edit dates then press button to recalculate the cash amount in your account and instantly get a preview/estimate of your cash flow into the future. Preparation: Create a table with these fields and attributes:</p>
<p>Id &#8230;&#8230;autonumber</p>
<p>Cash &#8230;.currency</p>
<p>Date &#8230;.Date/time</p>
<p>Balance..currency</p>
<p>Desc&#8230;..Text</p>
<p>Save the table as &#8220;cashflow&#8221;</p>
<p>Next create a form with &#8220;cashflow&#8221; as the record source. Use a continuous form and place all the fields from the cashflow table on the form. Place the field labels in the form header, place the fields in the detail section and place a button to click for the calculation also in the form header.</p>
<p>Use any descriptive text for the button and any labels you desire to fill out the form.</p>
<p>Select the form and make it active. Then set these values on the Data tab:</p>
<p>Record source = cashflow</p>
<p>Order by = cashflow.date</p>
<p>Allow filters = yes</p>
<p>Allow deletions = yes</p>
<p>Allow additions = yes</p>
<p>Data entry = no</p>
<p>Enter this code on the Event tab &#8220;On Click&#8221; Event on the button you created to perform the calculations.</p>
<p>Dim sql1 As String</p>
<p>Dim db1 As DAO.Database</p>
<p>Dim rec2 As DAO.Recordset</p>
<p>Dim amnt As Currency</p>
<p>Dim bal As Currency, newbal As Currency</p>
<p>Dim cnt As Integer, counter As Integer</p>
<p>DoCmd.Requery</p>
<p>newbal = 0</p>
<p>Set db1 = CurrentDb()</p>
<p>sql1 = &#8220;SELECT cashflow.id, cashflow.Cash, cashflow.date, cashflow.balance, cashflow.desc FROM cashflow;&#8221;</p>
<p>Set rec2 = db1.OpenRecordset(sql1, dbOpenDynaset)</p>
<p>rec2.MoveLast</p>
<p>cnt = rec2.RecordCount</p>
<p>rec2.MoveFirst</p>
<p>counter = 0</p>
<p>DoCmd.GoToRecord , , acFirst</p>
<p>Do Until counter = cnt</p>
<p>newbal = newbal + Cash</p>
<p>Me.Balance.Value = newbal</p>
<p>counter = counter + 1</p>
<p>DoCmd.GoToRecord , , acNext</p>
<p>Loop</p>
<p>rec2.Close</p>
<p>Save the form and give it a try.</p>
<p>Notes: Enter debits as negative values in the amount column. Note: that as you proceed through the year, the fields get locked for past dates to preserve the data.</p>
<p>You must set the Microsoft DAO 3.6 VBA reference for this example to work. Look in the toolbar for Tools/References when you have the VBA editor open and check the box labeled Microsoft DAO 3.6 Object Library.</p>
<p>Access Solution Success: Document Manager for Scanning system</p>
<p>Situation</p>
<p>This customer had a small shop that ran a service to scan paper documents by the pallet load and return them electronically archived on DVD&#8217;s. The scanning software did not provide a cost effective way to categorize and search for the documents once scanned and stored. The customers needed a way to quickly find documents or folders of documents by searching for dates, or names, or record numbers etc, either singularly or in any combination without having to buy the expensive document manager from the scanner manufacturer.</p>
<p>Solution</p>
<p>We developed and access database that would interface with the output file of the scanner and automatically index all of the files in an access table. Then we provided a robust search environment allowing the user to enter any combination of search strings to locate a document or folder on the DVD. Lastly we provided a way to display the files quickly using the standard windows picture viewer.</p>
<p>Benefits</p>
<p>Our customer was able to provide a free tool to her customers for search and retrieval and gain an edge on her competition and increasing her sales.</p>
<p>You can find more Access help from BioMation Systems at any of the following locations: http://www.accessdatabasehelp.com</p>
<p>http://www.accesshelpebook.com</p>
<p>http://www.biomationsystems.com/AccessTips.htm</p>
<p>BioMation Systems develops and implements custom database applications for businesses of all sizes that solve complex office automation and data management problems enabling our partners to focus more on growing their business and satisfying their customers.</p>
<p>The information in the Access tip is for educational purposes aimed at the novice to intermediate Access user. This tip worked as described on the computer systems at BioMation Systems using Access 2000 and is not supported.</p>
<p>BioMation Systems, Inc. <a href="http://www.biomationsystems.com">www.biomationsystems.com</a> </p>
<p>Jon Watson is the founder of Biomation Systems, Inc. With over 20 years experience helping Fortune 500 companies with process improvement he formed BioMation to bring the same expertise to smaller companies that need the same improvements at an affordable price.</p>
<p><span ><strong>Contact the Author</strong></span></p>
<div><span ><a href="http://www.biomationsystems.com/">Jon Watson</a><br />
<a href="mailto:jonw@biomationsystems.com">jonw@biomationsystems.com</a><br />
</span></div>
<div><span ><em>Keywords: Access tips, cash flow, ms access tips, </em></span></div>
<p><span > </p>
<p> </p>
<p></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.articlecontentking.com/business/customer-service/ms-access-tip-quick-cash-flow-calculator.php/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
