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! ![]() |
![]() ![]() Wednesday, March 03, 2010 – Permalink – Mail ExcelVBA + sampleExcel Guru Ron de Bruin has put together the VBA code needed to send Excel via email.He has also included the sample workbooks for those that are not VBA literate. Also: ". . . a new add-in named RDBMail for Excel/Outlook 2007-2010 Code to send mail from Excel See all Topics excel <Doug Klippert@ 3:43 AM
Comments:
Post a Comment
Saturday, February 20, 2010 – Permalink – Selection AddressWhat's the count". . . know what range is selected at any given time. You can look at the Name Box, but that only show the active cell." Display number of Rows and Columns See all Topics excel Labels: Customize, Formulas, Macros, Reference, Shortcuts, Tips, VBA <Doug Klippert@ 3:59 AM
Comments:
Post a Comment
Thursday, February 18, 2010 – Permalink – Custom QATAccess additionsApplications put most of the most-used commands on the Home tab's Ribbon, not everything is there. You may want to add Close, Close All, or Print commands, for example. In the upper Left corner is the Quick Access Tool bar. To update the QAT: Click the down-pointing arrow to the right of the QAT. Choose any common commands (New, Close, Print, etc.) by checking the option. See all Topics excel Labels: Customize <Doug Klippert@ 3:31 AM
Comments:
Post a Comment
Friday, February 12, 2010 – Permalink – Custom ToolbarsYou’re not restrictedYou can create your own toolbars. Here's some code that helps: ![]() Toolbars for Fun and Profit See all Topics excel <Doug Klippert@ 3:09 AM
Comments:
Post a Comment
Tuesday, January 26, 2010 – Permalink – Where's the TemplateFind and/change storage spotsDescribes the different template categories and the locations of templates in 2007 Office programs. Also describes the registry settings that control where to find your custom templates. Support.Microsoft.com See all Topics excel <Doug Klippert@ 3:48 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. See all Topics excel <Doug Klippert@ 3:18 AM
Comments:
Post a Comment
Thursday, September 24, 2009 – Permalink – Shut it All DownClose the spreadsheet and ExcelAs it comes out of the box, at this point, Excel 2007 is set to display spreadsheets on the task bar. No big deal 2003 did too. If, however, you only have one workbook open and want the application to shut down when you close the book you must make a little change. Just as before, you must deselect Windows in the Taskbar from the View Options. In 2007 it is located by clicking on the logo icon, then choose Excel Options. The Windows entry is on the Personalize screen ![]() See all Topics excel <Doug Klippert@ 3:44 AM
Comments:
Post a Comment
Wednesday, September 02, 2009 – Permalink – Dynamic TabsChange tab names automaticallyChanging the names of tabs is easy, just double click the tab or right click and choose rename. Allen Wyatt has a small piece of code that will automatically update the tab name based on the value of a cell in the spreadsheet. Sub myTabName() ActiveSheet.Name = ActiveSheet.Range("A1") End Sub Allen also has some error checking code on his site: Dynamic Worksheet Tabs Dick Kusleika suggests another way using a change event: Naming a sheet based on a cell See all Topics excel <Doug Klippert@ 3:33 AM
Comments:
Post a Comment
Thursday, August 13, 2009 – Permalink – Scroll RestrictionsWithout ProtectionYou can protect a spreadsheet so that data is shielded from inadvertent entries. There is another way to set up a scroll area that does not involve protection. Open the Control Toolbox (right-click any existing tool bar) and click on the Properties icon. In the Scroll Area text box, type the scroll area range, or type the defined Name for the range. To cancel the Scroll Area restricted range, clear the Scroll Area text box. ![]() If you are using Office 2007, the Property icon is on the Developers tab. ![]() Multiple areas can be selected using Protection, but only one area is allowed using the Scroll Property. See all Topics excel <Doug Klippert@ 3:29 AM
Comments:
Post a Comment
Wednesday, March 04, 2009 – Permalink – Animate Window SizeSo cool!The following macro has little or no practical computing value, but it can add a "way cool" element when a worksheet is unhidden. There are three states that a worksheet can be in; Minimized, Maximized, and Normal. From AutomateExcel.com: ActiveWindow.WindowState (By Mark William Wielgus) Also fun: Sub SheetGrow() Dim x As Integer, xmax As Integer With ActiveWindow .WindowState = xlNormal .Top = 1 .Left = 1 .Height = 50 .Width = 50 If Application.UsableHeight > Application.UsableWidth Then xmax = Application.UsableHeight Else xmax = Application.UsableWidth End If For x = 50 To xmax If x <= Application.UsableHeight Then .Height = x If x <= Application.UsableWidth Then .Width = x Next x .WindowState = xlMaximized End With End Sub # posted by Joerd : 12/30/2005 See all Topics excel <Doug Klippert@ 3:27 AM
Comments:
Post a Comment
Tuesday, February 10, 2009 – Permalink – Dynamic AutoShape LinkShow the starHere's a hint that I had forgotten about.You can tie the result of a cell to an AutoShape. This displays the value in a more dramatic manner.
![]() See all Topics excel <Doug Klippert@ 3:21 AM
Comments:
Post a Comment
Saturday, October 11, 2008 – Permalink – Stock AnswerBuilt in serviceYou can easily insert an automatically updated stock quote for a specific company in a spreadsheet. Here are the instructions:
![]() See all Topics excel <Doug Klippert@ 4:20 AM
Comments:
Post a Comment
Sunday, September 14, 2008 – Permalink – Add a Picture to a CommentAlso graphs
Contextures.com
Also:
Excel: Code to add picture to Excel Comment
<Doug Klippert@ 2:48 AM
Comments:
Post a Comment
Sunday, June 29, 2008 – Permalink – Customize Date in FooterFormattingThis subroutine inserts the current date in the footer of all sheets in the active workbook. This process can be accomplished without a macro, however, you'll need the macro if you want to specify the formatting of the current date. An example of the return generated by running this macro is Saturday, March 05, 2005.
Microsoft KnowledgeBase: <Doug Klippert@ 3:11 AM
Comments:
Post a Comment
Sunday, May 04, 2008 – Permalink – Conditional FormattingIf it's Tuesday, it must be mauve
This can be very useful for highlighting important information and values outside an accepted range or providing a visual cue to associate value ranges with color codes. Just click the cells you'd like to format and select Format >Conditional Formatting. The Conditional Formatting dialog box lets you set up the conditions by which the formatting of the cell will occur. You pick the operator (between, equal to, less than, etc.) and the value or range of values. Click Format to open the Format Cells dialog box, where you can select the colors and styles to be used. However, you can format that same cell to exhibit red, bolded text on a green background if it contains a value between 51 and 100. GR Business Process Solutions: Also <Doug Klippert@ 7:03 AM
Comments:
Post a Comment
Saturday, March 22, 2008 – Permalink – Default SaveChoose your own locationWhen you choose to save most Office files, the Save dialog box defaults to the Documents or My Documents folder. (The following directions work in 2007, but you need to click on the Office button in the upper left corner of the Window)
Change the folder where e-mail messages and attachments are saved Also: D.C. Everest school district Weston, WI: Office Default Paths If you don't want to change the default, but would like to be able to quickly go to an alternate site, open the Save or Save Attachment dialog box. On the left side of the box is the Places Navigation bar. If you click the Desktop icon, that location will be used to save the file. You can add spots to the bar. Browse to the specific folder. Highlight the folder and click the down arrow beside the Tools option. Select "Add to My Places." The file or e-mail attachment can then be saved where you want. See all Topics excel <Doug Klippert@ 7:45 AM
Comments:
Post a Comment
Wednesday, September 19, 2007 – Permalink – Clippy's Revenge pre-2007Roll your own OA
If you want to play with it, see John Walkenbach's Create A Fake Clippy Programming the Office Assistant
With Assistant Here are a few of the actions:
See all Topics excel <Doug Klippert@ 7:45 AM
Comments:
Post a Comment
Friday, August 03, 2007 – Permalink – Undo ExcelLevel talkIn Excel 2007. the number of levels of the "undo stack" was increased from 16 levels to 100. Setting AutoFilters, showing/hiding detail in PivotTables, and grouping/ungrouping in PivotTables are now reversable. And the undo stack is not cleared when Excel saves, be it an AutoSave or a Save by the user. If you think the number of undos should be changed, here's how:
![]() Modify the number of undo levels If you want to clear the undo stack, just run a macro such as: Sub ClearUndo() Allen Wyatt: Clearing the Undo stack See all Topics excel <Doug Klippert@ 6:36 AM
Comments:
Post a Comment
Friday, June 08, 2007 – Permalink – Location IndicatorPoint to the spotHere's a link to the code that produces conditional formatting on the fly to the cells in the current row and column. ![]() Color banding location See all Topics excel <Doug Klippert@ 5:55 AM
Comments:
Post a Comment
Saturday, March 24, 2007 – Permalink – Splash ScreensA nice sparkleAfter working hours to perfect an Excel project, the last little piece that adds a touch of class, is a splash screen. Here are the instructions to construct this type of user form including a workbook that you can download: Userform - Splash screens Ivan F Moala administers this interesting site called The Xcel Files See all Topics excel <Doug Klippert@ 5:26 AM
Comments:
Post a Comment
Tuesday, February 06, 2007 – Permalink – Customize the 2007 RibbonLet the add-ins beginIt is said that the Office 2007 Graphical User Interface Ribbon cannot be as easily changed or modified like it has been in previous versions. This may be partially true, but not all is lost. Here is some information from the equine's mouth: Learn how to customize the Ribbon user interface (UI) in the 2007 Microsoft Office release. Also learn how new features in Microsoft Visual Studio 2005 Tools for the 2007 Microsoft Office System support RAD development of Ribbon customizations. (40 printed pages) Customizing the Office (2007) Ribbon Monsieurs MS also have a downloadable spreadsheets with the Control IDs. There are files for 2003 as well. Lists of Control IDs 2007 Office System Add-In: Icons Gallery See all Topics Labels: Customize <Doug Klippert@ 7:53 AM
Comments:
Post a Comment
|