
|
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, December 27, 2017 – Permalink – All the BasicsAll(most) all you need to knowOffice.Microsoft.com has a short demo that shows you the main things anyone needs to know about Excel. There are many thousands of users who find that this is all they ever need.
See all Topics excel Labels: Formulas, Functions, General, Reference, Tips, Tutorials <Doug Klippert@ 3:45 AM
Comments:
Post a Comment
Tuesday, December 19, 2017 – Permalink – Loan PaymentBasic tutorialMicrosoft provides a number of learning activities related to fundamental tasks. Here's one that walks the student through a worksheet designed to calculate interest and total payment for a purchase, based on different loan terms. "This practical spreadsheet lesson offers easy answers to life's perplexing math problems like How much will my dream car really cost after financing? Dream Car Also: Basic Financial Calculations See all Topics excel Labels: Formulas, Functions, General, Reference, Shortcuts, Templates, Tips, Tutorials <Doug Klippert@ 3:23 AM
Comments:
Post a Comment
Tuesday, October 31, 2017 – Permalink – Calculate Running TotalUsing the OFFSET functionAdding up a running balance can be frustrating when new data is added or old transactions are removed. "How to create a data list to manage transactions, add and delete rows from the list, and accurately calculate a running balance using the OFFSET function."Cash flow using OFFSET.PDF Office.Microsoft.com: Calculate a running total See all Topics excel Labels: Formulas, Functions, General, Reference, Shortcuts, Tips, Tutorials <Doug Klippert@ 3:13 AM
Comments:
Post a Comment
Thursday, October 26, 2017 – Permalink – Insert Line Breaks With CodeLabel CaptionsIf you've ever needed to insert line breaks in a message box prompt, you most likely built a string that incorporated a line feed or carriage return character. Unfortunately, label objects aren't as forgiving when it comes to using these characters. If you're setting a label's Caption property with code, you'll find that the special control characters are interpreted as squares, since they're otherwise un-displayable. To successfully insert a line break in a label caption, you need to include both a line feed character and a carriage return character, entered consecutively. To do so, you can use the Chr() function, such as: Me.Label1.Caption = "Line 1" & _ Chr(13) & Chr(10) & "Line 2" However, you can also simplify your code using an built-in constant: Me.Label1.Caption = "Line 1" & vbCrLf & "Line 2" See all Topics excel Labels: Formats, Functions, General, Reference, Shortcuts, Tips, Tutorials <Doug Klippert@ 3:08 AM
Comments:
Post a Comment
Thursday, August 31, 2017 – Permalink – Tips and FormulaeFunctions and MacrosI'm always looking for Excel sites. A fresh perspective can make the view more clear. While he does approach from a Mac angle, the Excel world welcomes those of all persuasions. J.E. McGimpsey's XL Pages Here are some of the tips:
See all Topics excel Labels: Formulas, Functions, General, Reference, Shortcuts, Tips, Tutorials <Doug Klippert@ 3:15 AM
Comments:
Post a Comment
Monday, May 08, 2017 – Permalink – Statistical FunctionsDefinitions and listExcel contains a slew of functions relating to statistical analysis. That's a slew not a skew.
Statistical Functions Training - Statistical See all Topics excel <Doug Klippert@ 3:51 AM
Comments:
Post a Comment
Tuesday, January 24, 2017 – Permalink – Custom FunctionsWrite your ownExcel allows you to create your own functions. If =SUM() is not enough for you, look at this link:Custom Functions - User Defined Functions See all Topics excel Labels: Customize, Functions, General, Reference, Tips, Tutorials <Doug Klippert@ 3:10 AM
Comments:
Post a Comment
Monday, August 15, 2016 – 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+ has taken it up to 16,284 columns. See all Topics excel Labels: Functions, General, Reference, Shortcuts, Tips, Tutorials, VBA <Doug Klippert@ 3:27 AM
Comments:
Post a Comment
Saturday, June 11, 2016 – Permalink – When 28 is 30How long is a month?When you use the banker's DAYS360 function to calculate the number of days between two dates, you can get an odd answer. If you use the DAYS360 function with a start date of February 28 and with an end date of March 28, a value of 28 days is returned. You expect a value of 30 days to be returned for every full month. (12*30=360) This behavior may occur if you use the U.S. method, also known as the NASD method, with the DAYS360 function. To work around this behavior, use the European method with the DAYS360 function. With the European method starting dates and ending dates that occur on the 31st of a month become equal to the 30th of the same month. To use the European method with the DAYS360 function, use the following syntax: =DAYS360(cell number of start date,cell number of end date,TRUE) Using FALSE or omitting the third parameter uses the U.S. method Support.microsoft.com An unexpected value with the DAYS360 function See all Topics excel <Doug Klippert@ 3:43 AM
Comments:
Post a Comment
Saturday, May 28, 2016 – Permalink – Declaring Multiple VariablesDeclare each oneWhen setting up a macro in VBA, if you want to declare multiple variables in one line of code, be sure to specify the type for each variable, even if the variables are the same type. Avoid code like the following: Dim strFName, strLName, strMI As String In such a case, only the last variable, strMI, is actually declared as a String type. The first two variables are designated by default as Variant data types. To correctly declare the three variables, you would use the statement: Dim strFName As String, strLName As String, strMI As String
See all Topics excel <Doug Klippert@ 3:49 AM
Comments:
Post a Comment
Sunday, March 06, 2016 – Permalink – Count the ColorsI bid 3 RedWhat if you would like to know the color name or to count or to sum cells by a fill color? There is no built-in function in Excel.Sum and Count by fill color Chip Pearson: Working with Cell Colors See all Topics excel Labels: Formulas, Functions, Reference, Tips, Tutorials, VBA <Doug Klippert@ 3:37 AM
Comments:
Post a Comment
Monday, February 22, 2016 – Permalink – UDF is not a Baby AlienThings should to functionFrank Rice has written a "show how" about creating functions that are not included in the box. "Excel allows you to create custom functions, called "User Defined Functions" (UDF's) that can be used the same way you would use SUM(), VLOOKUP, or other built-in Excel functions.frice's Weblog Here are some other links: Vertex42.com: User Defined Functions Support.Microsoft.com: Functions to Calculate Light Years See all Topics excel Labels: Formulas, Functions, General, Reference, Tips, Tutorials <Doug Klippert@ 3:46 AM
Comments:
Post a Comment
Friday, January 29, 2016 – Permalink – Lookup, Down, and SidewaysA very useful Excel featureExcel does not have "relational" tables like database applications such as Access. You, however, can make use of database functions including the ability to look up values in a table based on a value. You could, for instance look up a salesperson's records based on an employee ID. Using VLOOKUP, HLOOKUP, INDEX, and MATCH in Excel to interrogate data tables John Walkenbach has a book "Excel 2003 Formulas" with a 24-page chapter on Lookup functions and other database/list tricks. Chip Pearson talks about lookups on his site as well.. Daily Dose of Excel: VLookup on Two Comumns See all Topics excel Labels: Formulas, Functions, General, Reference, Tips, Tutorials <Doug Klippert@ 3:49 AM
Comments:
Post a Comment
Friday, September 25, 2015 – Permalink – Time Without LimitsNo DelimitersExcel is most happy when you enter dates and times with the correct separators. 1/1/2004 is a good date. So is 1-1-2004. If you just entered 112004 in a cell formatted as a date you'll get: Wednesday, August 27, 2206 the 112,004th day since January 1, 1900. Chip Pearson has come up with VBA code, using the Worksheet_Change event procedure, that will allow you to enter dates without dashes or slashes. ![]() See: Date And Time Entry See all Topics excel Labels: Formats, Functions, Macros, Reference, Shortcuts, Tips, Tutorials, VBA <Doug Klippert@ 3:55 AM
Comments:
Post a Comment
Sunday, September 20, 2015 – Permalink – Information FunctionsWho, What, WhereIf you need to know if automatic calculation is on or off or the number of worksheets that are active, Excel can display the INFO. ![]() System Information:
See all Topics <Doug Klippert@ 3:42 AM
Comments:
Post a Comment
Friday, August 07, 2015 – 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 Labels: Functions, General, Reference, Shortcuts, Tips, Tutorials <Doug Klippert@ 3:20 AM
Comments:
Post a Comment
Wednesday, July 22, 2015 – Permalink – Statistics and ExcelWhat are the chances"Excel is the widely used statistical package, which serves as a tool to understand statistical concepts and computation to check your hand-worked calculation in solving your homework problems. The site provides an introduction to understand the basics of and working with the Excel. Redoing the illustrated numerical examples in this site will help improving your familiarity and as a result increase the effectiveness and efficiency of your process in statistics." Dr. Hossein Arsham The site is very clearly written. While some of the concepts are advanced, Dr. Arsham explains them in simple terms. It is a good introduction to the Analysis ToolPak. Here are some of the subjects covered:
See all Topics excel Labels: Formulas, Functions, General, Reference, Tips, Tutorials <Doug Klippert@ 3:11 AM
Comments:
Post a Comment
Saturday, May 30, 2015 – Permalink – Date CalculationsDay by DayHow to count the days. Definitions and equations.Date Calculations in Excel by Charley Kyd See all Topics excel Labels: Formulas, Functions, General, Reference, Tips, Tutorials, VBA <Doug Klippert@ 3:54 AM
Comments:
Post a Comment
Saturday, May 23, 2015 – Permalink – Column(s) FunctionVLOOKUP"Excel will adjust cell references in formulas when you insert or delete rows or columns.From a PC Magazine article By Neil J. Rubenking Also: eHow: Using the Column Function OzGrid: Copy Rows (Scroll down to about the middle of the page) See all Topics excel <Doug Klippert@ 3:27 AM
Comments:
Post a Comment
|