Wednesday, September 12, 2012

How to Calculate Macros in Excel


1. Click the 'File' menu's 'Options' button, then click the 'Formulas' link. Click the 'Manual' option, then 'OK' to close the 'Options' dialog box. This step turns off automatic calculation, which your macro will restore.
2. Type the following into cells A1 through C1 of the current worksheet: 5, 10, '=a1*a2.' Notice that the formula in C1 is incorrect, due to your selection of the manual option in step one. Your macro will restore automatic calculation.
3. Click the 'Developer' tab's 'Visual Basic' button to enter the Visual Basic programming environment. Paste the following program into the window that appears. This program uses the 'Range' object to enter values in two different worksheet cells, and a formula into another cell. The program has two statements that force the current worksheet to update its calculation. The first is 'Application.Calculation = xlCalculationAutomatic.' This statement sets the 'Calculation' property of the Excel application itself. The second is the one calling the 'Calculate' function of the 'ActiveSheet' object. This statement tells only the active sheet to calculate, not the entire workbook.Public Sub recalc()'Enter numbers in a cell'Enter a calulation that depends on those numbers'Force recalculationApplication.Calculation = xlCalculationAutomaticRange('a1') = 5Range('a2') = 10Range('a3').Formula = '=a1*a2'ActiveSheet.CalculateEnd Sub
4. Press 'F5' to run the program.
5. Click the 'Excel' icon on the Windows taskbar to return to Excel. Notice that the cell A3 has a function that requires updated calculation, and that the result of the calculation, the product of the worksheet's top two cells, is accurate.
Read more ►

Tuesday, September 11, 2012

How to Add Two Email Hyperlinks to One Cell in Excel


Adding Multiple Email Hyperlinks in Excel 2003
1. Launch the Microsoft Excel 2003 application.
2. Create a new spreadsheet or open an existing sheet in which you wish to add the email hyperlinks.
3. Configure the desired cell to a size that can easily accommodate two lines of text. This can be accomplished by clicking on the side of a row or column heading that you wish to expand and dragging it in the direction of expansion. For example, if you want to adjust cell B2, you would click on the right border of the column B heading and drag it to the right. The actual width will depend on the length of the email address. You would then click on the bottom border of the row 2 heading and drag it down. A height of 50 should easily accommodate two rows of text.
4. Click the 'View' option at the top of the screen.
5. Choose the 'Toolbars' option, then select the 'Drawing' option.
6. Select the text box from the bottom toolbar.
7. Click on your cell and configure the shape.
8. Type the email address into the text box.
9. Repeat steps 7 and 8 for the second text box, making sure the boxes are not overlapping. Your email hyperlinks will appear automatically.
Adding Multiple Email Hyperlinks in Excel 2007
10. Launch the Microsoft Excel 2007 application.
11. Create a new spreadsheet or open an existing sheet in which to add the email hyperlinks.
12. Configure the desired cell to a size that can easily accommodate two lines of text. This can be accomplished by clicking on the side of a row or column heading that you wish to expand and dragging it in the direction of expansion. For example, if you want to adjust cell B2, you would click on the right border of the column B heading and drag it to the right. The actual width will depend on the length of the email address. You would then click on the bottom border of the row 2 heading and drag it down. A height of 50 should easily accommodate two rows of text.
13. Select the 'Insert' tab, then click the 'text box' option. Configure the shapes of the boxes within your cell so that they are not overlapping.
14. Highlight each email address, then right-click it and choose 'Hyperlink.' Click the 'email address' option on the bottom-left and type in the email address.
Read more ►

How to Anchor Columns in a Spreadsheet


1. Open the Excel program and open the desired spreadsheet or enter data to create a new spreadsheet.
2. Select the column or columns that are to remain visible when scrolling. To select a column, click on the letter at the top of the column. The column will then be highlighted showing it has been selected.
3. After selecting a column when using Excel 2007, click on the view tab on the toolbar. Once the view tab is open, in the Windows group, click on the arrow that is located below the freeze panes. To anchor only one column, click on Freeze First Column. To anchor more than one row, click on Freeze Panes. To anchor columns in other versions of Excel, such as 2003, select the column and click on the Windows tab on the toolbar and click on Freeze Panes.
4. When the column or columns need to be unanchored, click Unfreeze Panes in the Window menu.
Read more ►

How to Make Text Appear as Typed in Excel


1. Open the Excel 2010 worksheet in which you want to enter your information.
2. Click on the top-left cell in the area where you want to alter the cell's format. Hold shift and then click the bottom-right cell in the area. If desired, you can also click the letters above the columns or the numbers to the left of the rows to select an entire column or row, respectively. Finally, to alter the format for the entire worksheet, click the button that sits to the left of the 'A' and above the '1' in the upper left corner of the sheet.
3. Click the 'Home' tab at the top of the screen. Locate the 'Number' area of the ribbon and click on the drop-down box found there.
4. Choose 'Text,' which will be at the bottom of the list that appears. Once you click on this option, your selected cells will display exactly what was typed into them.
Read more ►

Tuesday, August 28, 2012

How to Convert Numbers to Text in Microsoft Excel


1. Open a new workbook in Microsoft Excel.
2. Type the list of numbers you would like to convert to text down a column.
3. Type =Text(cell,'units') in the next empty column or row, where 'cell' is the cell containing the number you want to convert and 'units' is the unit you want the number to be expressed in. For example, if you have 10 in cell A1 and want to express it in U.S. dollars, type =text(A1,'$0.00') in cell B1.
4. Click on the cell containing the formula and go the lower right-hand corner of the cell until your mouse pointer turns into sign. Drag the formula down the column to the last row containing data.
Read more ►

Monday, August 27, 2012

How to Create a Drop


1. Select the data you want the drop-down menu to contain. This can be any list of information. Highlight those cells and click the 'Data' menu. Select 'Sort' and 'A-Z.' This will alphabetize your list.
2. Place your cursor in the cell where you want your drop-down list located. Click the 'Data' menu and the 'Data Tools' menu. In the 'Data Tools' menu, select 'Data Validation.'
3. Choose 'List' in the 'Allow' menu of the 'Data Validation' dialog box. Click the arrow beside the 'Any Value' option to view the options where 'List' will be found.
4. Click the button at the very end of the 'Source' entry box. This will generate a 'Data Validation' dialog box. Select the worksheet where the data is located for your list. Highlight all of the cells you want included in the drop-down list. Click the button at the end of the 'Source' entry box to select the cell range. If you do not want the list to be left blank, you should clear the check mark in the the 'Ignore Blank' check box in this menu.
5. Select the 'Input Message' tab to set an input message that will appear when the list is selected. This will allow you to provide people with an understanding of what you would like them to select in this menu.
6. Select the 'Error Alert' tab to set an alert to notify users if they have improperly populated the list or failed to select an option.
7. Select 'OK' to populate and publish the drop-down list.
Read more ►

How to Use a Chart Wizard in MS Excel 2007


1. Open the Excel workbook with the data that you wish to chart.
2. Select all the cells containing the relevant data. Press 'CTRL' and 'A' to select them all.
3. Select 'Chart' from the Insert menu. This will open the Chart Wizard.
4. Select a chart type under 'Standard Types.' If you are unsure how a specific chart will represent your data, click it to view a preview. Click 'Next' when you are done.
5. Confirm the data range to include in your chart. The information is already filled in to show the cells you selected in Step 2, but you can switch around the order in which your spreadsheet's rows or columns appear on the final chart. Click 'Next' when you are done.
6. Choose from the wide range of chart options in the next window. They are divided into six tabs: Titles, Axes, Gridlines, Legend, Data Labels and Data Table. If you have the 'Preview' box checked on these pages, you can see what various options will look like. Note that users trying to create basic charts can leave these options at their default settings; they can be changed later if need be. Click 'Next' when you are done.
7. Choose whether to place your chart in the existing workbook or to create a new document. Click 'Finish' when you are done.
Read more ►

How to Add a Header and Footer in Excel


1. Create or open the file you will be working with. A header and footer can be changed in an existing file or added to a new or existing file.
2. Determine if you will use a header, footer or both. Also decide what you want each of these to look like and say. These steps show how to add both a header and footer so choose the steps suitable to what you need.
3. Go to 'File' in the menu bar and select 'Page Setup.' A new box with options will appear. If you do not see 'Page Setup' in your options from the drop-down menu, click the arrow at the bottom of the 'File' list to see more options.
4. Click the tab that says 'Header/Footer,' and then the 'Custom Header' button. Type the words you want displayed into the appropriate box (or boxes) for where on the top of page you want the header to display (left, center or right). Once you have entered the words, click the 'A' to change the font to whatever type, size and color you want these words to be displayed as and click 'OK' on both the font and header boxes. Each word or section of words (left, center or right) can have its own font selection.
5. Include a footer by clicking the 'Custom Footer' button of the 'Header/Footer' tab. Again enter and format the text where you wish it to be displayed. You can automatically add the page numbers, date, time, file path, file name or tab name by using the buttons. Note that a code automatically appears depending on what you choose. You should not edit that information, but you can include text before or after that code.
6. Select the 'OK' button once done formatting the footer. Click the 'Print Preview' button to verify that you header and footer look the way you want. Edit them as needed and click 'OK' to add them to your document. Save the file by selecting 'Save' or 'Save As' from the 'File' menu.
Read more ►

Sunday, August 26, 2012

How to Create a Timeline Using Word


Create a Timeline in Word 2003
1. Open the Word document on which you want to create a timeline. Go to the 'File' menu, click on 'Page Setup' and go to the 'Margins' tab. Select the 'Landscape' orientation option and click 'OK.'
2. Go to the 'View' menu, point to 'Toolbars' and select 'Drawing' if it is not already selected. Click the rectangle auto shape in the drawing toolbar and draw a long, narrow rectangle horizontally onto the Word document, leaving room above and below it for text.
3. Right-click the shape and select 'Format AutoShape.' The 'Format Shape' dialog box will open. Go to the 'Colors and Lines' tab of the dialog box. Select a color from the 'Fill Color' drop-down menu.
4. Click 'AutoShapes' on the 'Drawing' toolbar. Point to 'Lines' and select a straight line. Draw the line coming up from the rectangle in the first position you want at the beginning of the timeline. Repeat, drawing the next line downward from the rectangle. Alternate each mark on the timeline.
5. Go to the 'Insert' menu and select 'Text Box.' Draw a text box above the first line coming out of the rectangle. Type a date or time and other pertinent information in the box. Repeat for the remaining points on the timeline.
6. Go to the 'Insert' menu, point to 'Picture' and select 'From File' or 'Clip Art' to add graphics to points on the timeline. Save and print it as desired.
Create a Timeline in Word 2007 or 2010
7. Open the Word document on which you want to create a timeline. Go to the 'Insert' menu and select 'SmartArt.' The 'SmartArt Gallery' will open.
8. Click 'Process' in the list of 'SmartArt Types.' Hover your mouse over the gallery options or click on an option to see its name and description. Select 'Basic Timeline' and click 'OK.' A timeline graphic will appear along with a corresponding text pane.
9. Click on the first text entry in the text pane. Enter the date or time and other pertinent information in the box. Repeat for the remaining points on the timeline.
10. Add an entry to the timeline by selecting the entry before or after the desired new entry. Right-click that entry, point to 'Add Shape' and select 'Add Shape After' or 'Add Shape Before.'
11. Click on the timeline and go to the 'Design' tab in 'SmartArt Tools.' Click 'Change Colors' to select a different color scheme. Select an option in the 'SmartArt Styles' gallery to change the appearance of the timeline.
12. Go to the 'Insert' tab and select 'Picture' or 'Clip Art' to add graphics to points on the timeline. Save and print it as desired.
Read more ►

How to Print Bar Codes in Microsoft Excel


1. Launch Microsoft Excel from the Microsoft Office folder in your Start menu.
2. Click the 'Tools' drop-down menu. Select the 'Macro' tab, and choose 'Security.' Set it to 'Medium.' If you use Office 2007, click on the Microsoft Office button at the top left corner and select 'Excel Options.' Click on 'Trust Center Settings' under the Trust Center category. Click on 'Macro Settings.' Put a check mark next to 'Enable all macros.'
3. Click the 'File' drop-down menu and select 'New.' Select 'Enable Macros' when you get a prompt. For Excel 2007, click on the Office button and select 'New.'
4. Enter the formula for your specific bar code in Column A, which is the first column. Make sure to use only numbers and/or letters while developing your bar code formula. Also, do not add any spaces between the characters.
5. Increase the width of Column B, the column next to the first column from last step. Click on the line that divides Column B and Column C and drag it to your right until you have enough space for the bar code.
6. Double-click on the formula you developed and type it in Column A from Step 4. Right-click on it and select 'Copy.' Right-click on the next cell in Column B and select 'Paste.'
7. Double-click to select all the formula in Column B. Select the 'Font' drop-down menu. Choose the font that says 'Bar code.' This will transform the formula into a bar code.
8. Select the cell with the bar code. Click the 'File' drop-down menu and select 'Print...' For Excel 2007, click the Office button and select 'Print.' Click 'Print...' again.
9. Choose 'Selection' under the Print What sub-category. Click 'Print' to end the task.
Read more ►

How to Print Mail Labels From Excel


1. Open Excel 2010 and select the 'Mailing' tab on the ribbon. Select 'Start Mail Merge.' Click 'Labels.' Select the label vendor and product number. Click 'OK.' A grid of the label appears in your Word document.
2. Click 'Select Recipients.' Select 'Use Existing List' from the drop-down list. Browse your files and locate the Excel workbook containing the mail labels. Click the workbook and select the worksheet containing the mail label information. Click 'OK.'
3. Format the labels by clicking the 'Insert Mail Merge' field. From the drop-down list, select a field name. It appears in the first label in the document. Add a space or additional formatting as necessary. Press the 'Enter' key to advance to the next line in the label.
4. Click the 'Preview Results' button to see the labels. Click 'Update labels' to apply the new label format to all of the new labels. Select 'Finish and Merge' to print the labels. Select 'Print Records' and 'All' to finalize the print process. Click 'OK' and review your printed mail labels from your printer.
Read more ►

Saturday, August 25, 2012

How to Transform a Spreadsheet into a Web Page in Excel 2003


1. Fill out your Excel 2003 worksheet. You will create the Web page from this version of the worksheet.
2. Format your worksheet. Make sure that your worksheet is formatted so it looks good enough to appear on the Internet. Save the file without exiting.
3. Under 'File' from the toolbar at the top of the Excel window, click 'Web Page Preview' on the dropdown menu. This will preview how the page will appear online. You may have to make formatting changes; if so, preview until you're finished.
4. Once the preview satisfies you, click 'Save as Web Page' under 'File.' This will save your spreadsheet as an 'htm' file so people can view it on the Internet.
Read more ►

How to Evaluate Multiple Columns in Excel 2003


1. Choose a formula or function that you want to use. For example, use the 'Sum' function to add columns or the 'Average' function to calculate the average of all the numbers.
2. Type the function into a blank cell. For example, type 'Sum(' without quotes to start the Sum function.
3. Type the column references, separated by a colon, then close the function with a closing parenthesis. For example, type 'a:b)' without quotes. Your function should look like '=Sum(a:b)'.
4. Press the 'Enter' key or click out of the cell.
Read more ►

How to Make an Invoice Using Excel


1. Navigate to the Excel templates website (see References below for link).
2. Select a template option and examine it for relevance to your needs. For example, click on 'Basic Invoice,' 'Sales Invoice,' or 'Service Invoice.' This brings up a window with a 'Download' button. Click on the button to download the template to your computer.
3. Locate the downloaded file on the computer by using Windows Explorer. To run Explorer, click on the 'Windows' button in Windows 7 or Vista or the 'Start' button in Windows XP, then click on 'Run.' Type 'Explorer' into the text box, then click 'OK.'
4. Double-click on the template file. The template will open up in Excel automatically, and you can then tailor the invoice to fit your needs by changing the business name, amount and other categories. When finished customizing the template, save it to the location of your choice on the computer for future use.
Read more ►

Friday, August 24, 2012

How to Find Standard Deviation on Excel 2007


1. Open Excel 2007 and select the 'Formulas' tab. Click the 'Statistical' button. A drop-down list appears.
2. Click 'Stdev.' The Standard Deviation function arguments window appears.
3. Type the first value in your standard deviation function in the 'Number 1' field. Type the second value in your standard deviation function in the 'Number 2' field. Click 'OK.' The standard deviation function is displayed in the cell.
Read more ►

Blogger news