|
Quick Links
- Learn How We Can Help
- Read About Recent Projects
- Schedule a Class
- Pay Your Invoice Online
- Request Technical Support
Did you know?
We offer
technical support
for Peachtree Accounting, Microsoft Excel, and DDE by
e-mail,
telephone, or
remotely.
|
|
|
 |
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.
|
 |
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!)
|
 |
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.
|
 |
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:
|
 |
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.
|
 |
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.
|
 |
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!)
|
 |
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.
|
 |
Automated tasks in Excel
Tommy Flynn's VBA site offers many VBA routines that automate various tasks in Excel.
|
 |
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
|
|