excel2007.Tips.Net Welcome toExcel2007.Tips.Net

Helpful Links

Excel 2007 Home
Tips.Net Home

Ask a Question
Make a Comment

Beauty Tips
Health Tips
Money Tips
Organizing Tips

Newest Tips

Changing a Link's Source

Using Conditional Formatting to Shade Rows

Editing by Moving and Copying

Making Sure Duplicate Names Aren't Entered

Applying a Conditional Format to a Full Row

Hiding Worksheet Tabs

Making Cells Flash

 

Common Formulas in Excel

Summary: Got some formulas you slaved over and want to use in lots of workbooks? This tip presents some helpful ideas on how you can save those formulas for easy recall later.

It can sometimes take quite a bit of time to create just the right formula. Once created, formulas become valuable, and you may need to use them over and over again in different worksheets you work with. Wouldn't it be great to have a way to paste commonly used formulas in a workbook, the same way you can paste clip art or other common objects?

Unfortunately, such a capability is not resident within Excel. There are a couple of things you can do to make your formulas more accessible, however. One thing you can do is keep a text document (a Notepad document) on your desktop, and store your commonly used formulas in it. With Excel open, you can open the text document, copy the desired formula to the Clipboard, and quickly paste it in the desired cell of the workbook.

Another possible solution is to assign names to your formulas.

  1. Enter your formula as you normally would.
  2. Select the cell containing the formula and press F2. This places Excel in edit mode.
  3. Hold down the Shift key as you use the cursor control keys to select the entire formula, including the equal sign at its very beginning.
  4. Press Ctrl+C. The formula is now on the Clipboard.
  5. Press Esc. You should now be out of edit mode, and the cell with the formula is still selected.
  6. Make sure the Formulas tab of the Ribbon is selected.
  7. In the Defined Names group, click the Define Name option. Excel displays the New Name dialog box. (Click here to see a related figure.)
  8. In the Name box, enter the name you want assigned to this formula.
  9. Select whatever is in the Refers To box, at the bottom of the dialog box, and press Ctrl+V. The cell reference is replaced with the formula that was on the Clipboard.
  10. Make sure there are no dollar signs in the formula. If there are, select them and delete them. (This method of using formulas does not work well with absolute references.)
  11. Click OK.

Now, whenever you want to use the formula, you simply enter an equal sign and the name you gave to the formula in step 8. Even though the name shows in the cell, the formula assigned to the name is actually used in doing the calculation. Since the formula used relative references (you got rid of the dollar signs), it is always relative to where you use the name in the worksheet.

Another approach works great if you are comfortable with macros and with the VB editor. This approach involves making your common formulas part of your Personal.xls file. This workbook is opened whenever you start Excel, and is designed primarily for macros and customizations that you want available whenever you use Excel. But, there is no reason it cannot be used for common formulas, as well.

Assuming you haven't yet created a Personal.xlsb file, follow these steps:

  1. Start Excel with a new workbook.
  2. Display the Developer tab of the Ribbon. (If no such tab is visible, click the Office button, click Excel Options, choose the Popular option at the left of the dialog box, and then select the check box labeled "Show Developer Tab in the Ribbon.")
  3. Click Record Macro. Excel displays the Record Macro dialog box. (Click here to see a related figure.)
  4. Using the Store Macro In drop-down list, choose Personal Macro Workbook.
  5. Click OK. The Macro Recorder is now running.
  6. Select any cell in the worksheet. (It doesn't matter which one you choose.)
  7. Click Stop Recording on the Ribbon's Developer tab.

The macro you recorded is now stored in your newly created Personal.xlsb worksheet. To see the code that you created, open the VB Editor (Alt+F11). In the upper-left corner of the editor is the Project Explorer; it lists all the various pieces and parts accessible through the editor. One of the items in the Project Explorer should be PERSONAL.XLSB. If you expand this object (click the small plus sign to the left of the project name), you should see a Modules folder. Expand the Modules folder, and it contains Module1. If you double-click on this module you see the macro you just recorded; it looks something like this:

Sub Macro1()

' Macro1 Macro
'

'
    Range("A4").Select
End Sub

You can now select this code and delete it, since you don't need it any more. You can then place other macros or user-defined function in the module, so they will be available.

What about formulas? Copy them to the Clipboard and paste them in the module, outside of any procedures defined therein. All you need to do is make sure you preface the formula with an apostrophe, so that the VB Editor thinks you are entering a comment. When you need the formulas at a later time, just go to the VB Editor, open the module, copy the formula, and paste it into the workbook you need.

Related Tips:

Step Up and Take Control! Subscribers to WordTips know just how valuable a resource it is. WordTips Premium provides twice the number of exceptional, easy-to-understand tips every week in an ad-free newsletter, as well as substantial discounts on WordTips archives and e-books. Check out WordTips Premium today!