Home Page Google Tips Quickbooks Tips Other Tips Peachtree Accounting DDE Tips Peachtree Accounting Tips Microsoft Excel Tips Our Store Site Map Training Recent Projects Our Services Home Page
Accounting Advisors Logo Navigation Bar
 
Quick Links
- Learn How We Can Help
- Read About Recent Projects
- Schedule a Class
- Pay Your Invoice Online
- Request Technical Support

Free Newsletter
You'll receive Peachtree tips, Excel tips, and more!

Newsletter Archives
Privacy Policy
Did you know?
We offer technical support for Peachtree Accounting, Microsoft Excel, and DDE by e-mail, telephone, or remotely.
Double Line Bar   Recommended Books Links VBA Tips Formula Tips Downloads General Tips
Microsoft Excel
General Microsoft Excel Tips (Page 2 of 8)
There are 79 General Microsoft Excel tips available.
View All Microsoft Excel Tips
Small Logo Using Excel to Process Data to be Imported into a Contact Manager
If you're using Excel to process data to be imported into a contact manager, such as Act!, save the data in dBase IV format, rather than a .CSV file. Act! often chokes when importing .CSV files, but easily accepts .DBF files.
Small Logo Creating a Header and Footer
In the Page Setup dialog box, enter "Page &[Page] of &[Pages]" in the Header/Footer sections to create a header or footer that reads "Page n of nn". (Thanks Andrew Weinstein!)
Small Logo Replacing Non-Printable Characters
Although Word allows you to search and replace non-printable characters, such as line feeds and carriage returns, it's not as easy in Excel. This line of code will does the trick, though. In this case, it replaces carriage returns with the HTML line break tag: Selection.Replace What:=Chr(10), Replacement:="<BR>" If you simply need to eliminate non-printing characters, use Excel's Clean function.
Small Logo Working Around Outlook E-mail Security
The new Outlook security measures implemented in Outlook 2000 SR-2 and Outlook 2002 make it an exercise in tedium to send e-mails from Excel or Access through Outlook. Fortunately, there are solutions:
Small Logo Color Chart
Doug Jacobson has a created a great color chart that has the decimal values that you can use with the RGB function for setting colors of objects with VBA. Alternatively, a hardcopy version is available from Amazon.
Small Logo Need to Determine the Last Day of a Month in VBA?
Here's a code snippet that shows how:

strDate = DateValue("01/01/2000")
strMonth = Month(strDate)
stryear = Year(strDate)
MsgBox DateSerial(stryear, strMonth + 1, 0)

Using a zero for the day argument of the DateSerial function causes VBA to return the last day of the month. Note that you have to add 1 to the month argument to get the end of the current month, otherwise DateSerial would return the last day of the previous month.
Small Logo Problems with the VBE Properties Window
From time to time, the properties window of the Visual Basic Editor (VBE) will fail to dock properly. When this happens, users who are comfortable with-- and choose to back up--the Windows registry can rename the following key from
HKEY_USERSDefaultSoftwareMicrosoftVBAOfficeDock
to
HKEY_USERSDefaultSoftwareMicrosoftVBAOffice;Dock

This will solve any errant docking behavior within the VBE. If you're using Windows 2000 and Office XP, the registry key is
HKEY_CURRENT_USERSoftwareMicrosoftVBA6.0CommonDock

Editing the registry is a dangerous operation that should only be performed by an experienced user at your own risk. (Thanks to Brian Murphy for relief of this annoying problem!)
Small Logo Hidden Sheets Within a Workbook
Be careful when working with hidden sheets within a workbook via VBA. Excel will allow you to copy a hidden sheet out of a workbook, into a new file. You can then, via VBA, save that workbook with only a hidden worksheet. Of course, this is a corrupt workbook that you then can't open.
Small Logo Automated tasks in Excel
Tommy Flynn's VBA site offers many VBA routines that automate various tasks in Excel.
Small Logo Excel Formula Debugging Trick
Be sure to enter formulas in Excel in all lowercase letters. When you press enter, Excel converts all valid portions of the formula to UPPER CASE. For instance, in the case of =sum(jj1:j10), pressing enter causes Excel to return the #NAME error, with =SUM(jj1:J10). Notice that the incorrect JJ1 is still in lower case, while the rest of the formula was capitalized. (Our thanks go to Aamir Ijaz Khan, who earned $5.00 for submitting this tip!)

Page: 1   2   3   4   5   6   7   8  

Accounting Advisors, Inc.
614 Park Avenue SE
Atlanta, Georgia 30312
Telephone: 404-784-0275
Toll Free: 800-724-0315
Fax: 404-420-2175
Privacy Policy


[Home Page] [Our Services] [Recent Projects] [Training] [Support]
Tips: [Excel] [Peachtree] [Quickbooks] [Google] [DDE] [Other]
[Pay Your Invoice] [Driving Directions] [Site Index]

Valid HTML 4.01!
Valid CSS!
About Our Site

Left Footer
Questions? Comments?
E-mail us
or call (404) 784-0275
Our toll free number is (800) 724-0315
© Copyright 2004 by Accounting Advisors
Web site designed and maintained by Accounting Advisors, Inc.
Right Footer