
|
Book Home Page Bloglines 1906 CelebrateStadium 2006 OfficeZealot Scobleizer TechRepublic AskWoody SpyJournal Computers Software Microsoft Windows Excel FrontPage PowerPoint Outlook Word Host your Web site with PureHost! |
![]() Friday, July 29, 2011 – Permalink – More than SudokuGame with Excel"IT may be the biggest tool in the Office, but Microsoft Excel can be cool too" Here's an article on off-prescription Excel. Play with Excel Here are some of the games you can play for free:
See all Topics excel <Doug Klippert@ 3:27 AM
Comments:
Post a Comment
Wednesday, July 20, 2011 – Permalink – Date ArithmeticThe drunken cousinWorking with dates has a few twists. Excel believes that time began on January 1, 1900. Each day since then is counted so that September 1, 2003 in Excel-speak would be → 37,865. 9/1/03 7:33 A.M. is a decimal → 37865.31458333333 When you subtract one date from another, for instance 9/1/2003 (A1)minus 7/4/2001 (A2), Excel displays the odd answer of → 2/27/1902. Excel formats the result of a formula with the same format as the source cells, Right-click the formula cell (=A1-A2). Select Format Cells ..., and then choose a Number format with zero decimals. The correct number of days → 789 will now be displayed. Another way is to use the rarely documented DATEDIF function. Chip Pearson calls it "the drunken cousin of the Function family." =DATEDIF(EarliestDate,LatestDate,Interval) =DATEDIF(A2,A1,"d")
Also: "Many users are surprised to discover that Excel cannot work with dates prior to the year 1900. The Extended Date Functions add-in (XDate) corrects this deficiency, and allows you to work with dates in the years 0100 through 9999." MS Knowledge Base: How To Use Dates and Times in Excel See all Topics excel <Doug Klippert@ 3:13 AM
Comments:
Post a Comment
Friday, July 15, 2011 – Permalink – Reset Shortcut MenuContext menu redoFor some reason (to be determined later) my shortcut menu started to accumulate a string of "Edit Formula" and "Delete Formula" entries. They didn't cause a problem, but were distracting. This little VBA code puts it back to the original settings until I can find a cause. Sub ResetShortcutMenu()
Application.CommandBars("Cell").Reset
End SubMacros that Customize and Control Shortcut Menus See all Topics excel <Doug Klippert@ 3:27 AM
Comments:
Post a Comment
Thursday, July 14, 2011 – Permalink – Office VBA TricksVideo + Free code"Learn tips and use sample code for several Office applications. These tips can help you to be more productive and can also be a starting point for developing your own tools, utilities and techniques."
VBA Tips & Tricks Getting Started with VBA in Office 2010 (VBA is VBA and is, in most cases, usable in all versions of Office) See all Topics excel <Doug Klippert@ 3:51 AM
Comments:
Post a Comment
Friday, July 08, 2011 – Permalink – Chiropractics for ExcelKnead and pound numbersChad Rothschiller, a program manager on the Excel team, discusses using formulas to 'clean up' data in Excel. |