|
Host your Web site with PureHost! |
![]() Thursday, December 31, 2009 – Permalink – Forms in WordWith and without codeData entry forms can be designed and presented using VBA code. Another simpler way to do it is to construct a form directly in the Word document. "Have you ever been asked to fill out a form in a word processor, only to discover that when you attempted to enter information, the lines on the form moved all over the page? Not to mention that the form was difficult and time-consuming to fill out? Most people don't realize that you can easily create professional-looking forms in Word."
By Dian Chapman at TechTrax Also: Fun with Forms Cindy Meister See all Topics Labels: Word <Doug Klippert@ 3:09 AM
Comments:
Post a Comment
Wednesday, December 30, 2009 – Permalink – Chart Null Data GapsFill in the spacesWhen creating a chart, data can sometimes be missing. You have a choice of leaving the cells empty or making them zero. By default, an empty cell will leave gaps in your graph. Zero entries will send a line graph down to the base line. One way to force Excel to interpolate the data is to enter the function =NA() in the empty cells. Another way is to go to Tools>Options and choose the Chart tab. Pick how you want data plotted - with gaps, as zero, or interpolated. ![]() Microsoft also has this suggestion: Gaps between the dates "If the datasheet data for the category axis contains date number formatting, Microsoft Graph automatically uses a special type of axis in your chart called a time-scale axis. Note, For 2007+, on the Design tab, click Select Data in the Data area, and then click Hidden and Empty Cells on the Select Data dialog box. [Edited entry from 12/30/2006} See all Topics Labels: Excel <Doug Klippert@ 3:14 AM
Comments:
Post a Comment
Tuesday, December 29, 2009 – Permalink – Close FormsAuto ShutdownHere's how to close a form after it’s used:
TechRepublic See all Topics Labels: Access <Doug Klippert@ 3:36 AM
Comments:
Post a Comment
Sunday, December 27, 2009 – Permalink – Time It RightNo need to wind your PCWindows will go out to the Internet to verify or correct its time settings. "If you wish to check your synchronization settings, look for the clock at the bottom right and double click on the time to bring up your time settings. Worldtimeserver.com: Atomic Clock Sync Settings National Institute of Standards and Technology: Time and Frequency Division NIST time servers Time signals can also be heard on shortwave radio or by phone. "The audio portions of the WWV and WWVH broadcasts can also be heard by telephone. The telephone service is very popular. The WWV number receives over 1 million calls per year, and the WWVH number receives more than 50,000." [Edited entry from 12/27/2006] See all Topics Labels: Windows <Doug Klippert@ 3:44 AM
Comments:
Post a Comment
Saturday, December 26, 2009 – Permalink – Garden Cities of To-morrowLullaby Baxter's BackThe quirky star of Capable Egg returns. Rattled Little Clam Montreal, 1997. Lullaby Baxter is waiting tables at Jello Bar. Coaxed on stage for an impromptu number, she sings Billie Holiday's signature song "Lover Man (Oh, Where Can You Be?)". This, her first public performance since grade school, brings down the house. Lullaby's Bio Little Song Also see: Capable Egg [Edited entry from 12/26/2006] See all Topics <Doug Klippert@ 3:46 AM
Comments:
Post a Comment
Friday, December 25, 2009 – Permalink – Copyright Fair UseWhen can you use it?The copyright law is a little vague when it comes to fair use. " Fair use is a copyright principle based on the belief that the public is entitled to freely use portions of copyrighted materials forpurposes of commentary and criticism. For example, if you wish to criticize a novelist, you should have the freedom to quote a portion of the novelist's work without asking permission. Absent this freedom, copyright owners could stifle any negative comments about their work. U S Copyright Office Ohio State University CopyrightLaw.com [Edited entry from 12/25/2006] See all Topics Labels: Addendum <Doug Klippert@ 3:24 AM
Comments:
Post a Comment
Thursday, December 24, 2009 – Permalink – List Fields in Access TableBit o' codeWhen viewing a table that has many fields in Design view, you have to scroll up and down to review the field names. This can be tiresome when you're referring to them constantly, and particularly when you're working with several tables. The following code produces a field listing for a given table. This can then be copied to Notepad and printed for easy reference. Enter the code into a module, substituting your table's name where appropriate. Open the Debug/Immediate window, type ListFields, Press Enter to produce the listing. Sub ListFields() Dim dbs As DATABASE Dim dbfield As Field Dim tdf As TableDef Set dbs = CurrentDb Set tdf = dbs.TableDefs!NAMEOFYOURTABLE Debug.Print "" Debug.Print "Name of table: "; tdf.Name Debug.Print "" For Each dbfield In tdf.Fields Debug.Print dbfield.Name Next dbfield End Sub [Edited entry from 12/24/2006] See all Topics Labels: Access <Doug Klippert@ 3:31 AM
Comments:
Post a Comment
Wednesday, December 23, 2009 – Permalink – Moving PSTInstructionsIt is sometimes necessary to move Outlook .PST files to a different drive on your local computer. Here are Microsoft's instructions: How to Move your Personal folders You may be tempted to move the file to a network drive, but Microsoft advices against it: Why Outlook .PST files are unsupported over a LAN or WAN link How to manage .pst files in Outlook 2002 and in Outlook 2007 Slipstick.com has this to say about how To move a Personal Folders .PST file and Moving Outlook .PST files to a new machine [Edited entry from 12/24/2006] See all Topics Labels: Outlook <Doug Klippert@ 3:46 AM
Comments:
Post a Comment
Tuesday, December 22, 2009 – Permalink – Link WorkbooksTie them togetherExcel is a flatfile database, but you can do some Access kinds of relationships. "A link is a formula that gets data from a cell in another workbook. When you open a workbook that contains links (a linking workbook), Microsoft Excel reads in the latest data from the source workbook or workbooks (updates the links).
[Edited entry from 12/22/2006] See all Topics Labels: Excel <Doug Klippert@ 3:07 AM
Comments:
Post a Comment
Monday, December 21, 2009 – Permalink – No Home in IEBlanked outYou can open Internet Explorer to a blank page. Sometimes your normal home page may be too busy, or slow to load when you just want to pop out to a different location. This trick will give you a blank slate to paste in a new URL.
[Edited entry from 12/21/2006] See all Topics <Doug Klippert@ 3:34 AM
Comments:
Post a Comment
Sunday, December 20, 2009 – Permalink – Give Yourself a TipTake your own adviseIf you still have Windows set up so that it shows a tip when you first sign in, you can add your own message, or change the ones the developers created.
![]() [Edited entry from 12/20/2006] See all Topics Labels: Windows <Doug Klippert@ 3:26 AM
Comments:
Post a Comment
Saturday, December 19, 2009 – Permalink – Notes from WordImport it allOne technique that can be used when preparing a PowerPoint show, is to import material from an existing Word Outline. If the Word document is formatted with Heading styles, Heading 1 will become a new slide and the subsequent headings, 1 through 6 will become bullet points on the slide. It may be desirable to prepare notes for each slide while developing the Word outline. Notes don't appear on the slide, they are placed on a separate page that can be printed out for the speaker or handed out to the audience. Bill Dilworth has written a macro that moves information that has been formatted, say at Heading 6, and places it on the notes page: "This macro outline allows the user to use Word's "Send To PowerPoint" feature, then run this macro to get notes from MS Word to PowerPoint as notes. The macro allows you to set the text level you want to become the notes. Word Outline to Notes Page in PowerPoint [Edited entry from 12/19/2006] See all Topics Labels: PowerPoint, Word <Doug Klippert@ 3:21 AM
Comments:
Post a Comment
Friday, December 18, 2009 – Permalink – Burn Wrapping Paper?Holiday infoIf you want to find out the real background story on any number of water cooler questions, try: StraightDope.com For instance: Why is it dangerous to burn wrapping paper? The fire is the wrong place for other holiday detritus as well - der Tannenbaum, for example. [Edited entry from 12/18/2006] See all Topics Labels: Addendum <Doug Klippert@ 3:41 AM
Comments:
Post a Comment
Thursday, December 17, 2009 – Permalink – Combo Box QueriesHow toParameter queries add flexibility to filtering records in a database. To make it easy, take a look at this approach from Martin Green's Office Tips site: Drop down box in a Parameter Query
Base Combo Box on Parameter Query to Filter Values [Edited entry from 12/17/2006] See all Topics Labels: Access <Doug Klippert@ 3:23 AM
Comments:
Post a Comment
Wednesday, December 16, 2009 – Permalink – It's PolicySet your ownIt's best to make your email rules available and well known: " Email is a quick, cheap and easy means of communication. This makes email a great business tool, but at the same time a potential threat for employers. Email threats such as confidentiality breaches, legal liability, lost productivity and damage to reputation cost companies millions of dollars each year. You may find it useful when trying to develop your own E-mail policy. EmailRepies.com: Create an Email Policy Business Link: Introduce an Email Policy [Edited entry from 12/16/2006] See all Topics Labels: Outlook <Doug Klippert@ 3:28 AM
Comments:
Post a Comment
Tuesday, December 15, 2009 – Permalink – Change Insert Picture TargetFile locationIf you would like to specify the folder Word will default to when you go to Inset>Picture:
Labels: Windows <Doug Klippert@ 3:12 AM
Comments:
Post a Comment
Monday, December 14, 2009 – Permalink – Have a Geeky ChrstmasAnd a Functional New YearIt is rather late in the season, but this is a gift that gives all year long: This hilarious clock is the perfect accessory for any Excel power user. Each numeral has been replaced with a suitable Excel function that will evaluate to that numeral. ![]() For instance: =FACT(3) - The FACT() function returns the Factorial of a number. The Factorial of 10 is 10x9x8x7x6x5x4x3x2x1. This function is great for statisticians calculating combinations and permutations. In our case, the Factorial of 3 is 3x2x1 or 6 MrExcel.com: Excel Function Clock [Edited entry from 12/14/2006] See all Topics Labels: Excel <Doug Klippert@ 3:18 AM
Comments:
Post a Comment
Sunday, December 13, 2009 – Permalink – Files do have ExtensionsSmarten your machineFor some reason, the powers that be thought that the general public was going to be confused by those suffixes at the end of file names. To help us all out, they hid extensions by default. I like to see .Doc (or .Docx). Here's how to get that information back
![]() Also see EdBott.com: Show or hide file name extensions [Edited entry from 12/12/2006] See all Topics Labels: Windows <Doug Klippert@ 3:27 AM
Comments:
Post a Comment
Saturday, December 12, 2009 – Permalink – Display Row, Column HeadingsUser FunctionHere's an odd little use of functions. If you want to display the Row number on a spreadsheet, the formula =Row()works just fine. You could then hide the Row and Column headings and format the Row numbers any way you want. If a Row is deleted the numbers will automatically update. Column headings are a little harder. The formula =Column() will show the number of the Column, not the letter, i.e. "2" instead of "B". The following formula extracts the Column letter: =SUBSTITUTE(ADDRESS(1,COLUMN(),4),"1","") To break it down: =ADDRESS(row_num,column_num,abs_num) This finds the address at Row number "1" and current Column number. The abs_num of "4 " says make the result a relative address. The formula will produce a result such as "AA1". SUBSTITUTE(text,old_text,new_text) This function looks at the address, i.e. "AA1". It replaces the Row number character ("1") with a null or empty value (""). The formula will produce a result such as "AA". Also see Daily Dose of Excel by Dick Kusleika. Dick mused:'
Of course Office 2007-10 has taken it up to 16,284 columns. [Edited entry from 12/10/2006] See all Topics Labels: Excel <Doug Klippert@ 3:08 AM
Comments:
Post a Comment
Friday, December 11, 2009 – Permalink – Hungarian NotationBelépésThis tip is useful in a number of applications. When you name an object, include a prefix that identifies the type of object. When naming a table for Customers, use "tblCustomers" . You could also have a form for customers. It would be "frmCustomers" . It's called Hungarian notation because with the prefix, it does not look like an English word. Dr. Charles Simonyi developed the convention at Microsoft, and he is from Hungary. He wrote an article on Hungarian notation for MSDN, the Microsoft Developer's Network. Hungarian notation Here are some prefixes:
[Edited entry from 12/9/2006] See all Topics Labels: Access <Doug Klippert@ 3:32 AM
Comments:
Post a Comment
Thursday, December 10, 2009 – Permalink – Templates are Digital StencilsMake your ownIf you have a document; such as a report or reoccurring newsletter, one way to reduce the production time is to create a template. These preformatted, boiler plated documents can then be fleshed out without having to reinvent the sardine. Here are some tutorials to help you along: AddBalance.com Template Basics About.com Word Templates [Edited entry from 12/7/2006] See all Topics Labels: Word <Doug Klippert@ 3:53 AM
Comments:
Post a Comment
Wednesday, December 09, 2009 – Permalink – SparklinesQuick graphic reinforcementA graph or chart can give the reader a visual representation of a great deal of data. Concepts or results can be more easily grasped by a well formatted graphic. Charts, usually, take up more space in a document than is absolutely required. Edward Tufte has come up with the concept of Sparklines (Sparklines:Intense, Word-sized Graphics) . These are small graphs about the same height and width as common words. They are not out of place in the text of a document. Sparklines give the reader a snapshot of the data that quickly supports the material being discussed. ![]() See: Bisantz Sparklines The Sparkmaker can create Sparklines for Word, Excel, or PowerPoint. They can also be produced in HTML. [Edited entry from 12/6/2006] See all Topics Labels: Excel, HTML, PowerPoint, Word <Doug Klippert@ 3:25 AM
Comments:
Post a Comment
Tuesday, December 08, 2009 – Permalink – What's the Expression?FrontPage, we knew you well |