advance excel 2003 updated pdf

Upload: ali-neman

Post on 29-May-2018

239 views

Category:

Documents


0 download

TRANSCRIPT

  • 8/9/2019 Advance Excel 2003 Updated PDF

    1/55

    Advance Excel 2003

    Using Filters

    When you have a database of information, there are times when you do not want to see all the data you

    entered, only the data that meets criteria you specify. You can search for entries that match the criteriaexactly or data that matches other operators, such as greater than, less than, begins with, or does not equal.

    Working with AutoFilter

    A very useful tool included with Excel is the AutoFilter, which can help you search and extract specific

    data from your worksheet.

    The AutoFilter arrows at the top of each column allow you to select records from the following options:

    All. Displays all line items. To p 10. Displays the 10 most repeated or highest values in a field. Custom. Displays items that meet your specific requirements. You'll learn about custom filters inthe next section.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    2/55

    Exact items. Displays a complete list of the items in the column. You can click one, and only therecords that contain that item will display.

    The arrows on a filtered column are displayed in a different color than the others.

    NOTETo further isolate specific items, click the AutoFilter arrow in another column and select an item from the

    list.

    You may want to redisplay all rows and perform a different filter.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    3/55

    NOTE

    Click on AutoFilter again if you no longer want the AutoFilter feature active.

    Sorting

    You can sort Excel data in ascending or descending order. In an ascending sort, Microsoft Excel sorts

    numbers first, then alphanumeric data. Ascending will sort alphabetically A through Z or numerically

    smallest to largest. Sorting descending will do just the opposite; it will sort alphabetically Z through A and

    numerically largest to smallest. Blank cells are always placed last, whether sorting in ascending or

    descending order.

    Sorting with the Toolbar ButtonsExcel provides two buttons on the Standard toolbar to perform a simple sort, which is data sorted by a

    single column. If your data is in an inclusive arrangement, you can use the toolbar buttons to quickly sort

    by a specified column. One button, the AZ button, sorts the data in ascending order, and the other button,

    the ZA button, sorts in descending order.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    4/55

  • 8/9/2019 Advance Excel 2003 Updated PDF

    5/55

    Data SubtotalsIf your database contains numerical data, Excel can look at your database and create subtotals and grand

    totals, which can help you manage and analyze your data. Before creating subtotals, you must first sort the

    database by the field you want to subtotal. You can then calculate subtotals for any column that contains

    numbers.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    6/55

  • 8/9/2019 Advance Excel 2003 Updated PDF

    7/55

  • 8/9/2019 Advance Excel 2003 Updated PDF

    8/55

    Understanding Function Syntax

    Functions consist of several different parts. Like a formula, a function begins with an equal (=) sign. The

    next part is the function name, which might be abbreviated to indicate what the function does. Examples of

    a function name might be SUM, AVERAGE, or COUNT. After the name, you enter a set of parentheses

    and enter arguments within those parentheses. Arguments are additional pieces of information that clarifyhow you want the function to behave. Arguments can consist of one or more components, ranging from cell

    addresses such as D13 or a range of cell addresses like D13:D25, to other variables such as a number of

    digits you want Excel to do something to. With only a few exceptions, all functions in Excel must follow

    that pattern. This function structure is called the syntax. Here are a few examples of function syntax. You'll

    learn throughout this chapter what these functions do.

    NOTEFunction names are not case sensitive.

    =SUM(B3:B21) =AVERAGE(F1:G6) =IF(B3>B4,"yes", "no")

    Creating a Total with the SUM Function

    The most commonly used function in Excel is the SUM function, which adds two or more values together

    and displays the total in the current cell. If any of the values change, the SUM total will automatically

    update. There are a number of different methods to enter the SUM function, but the following section

    describes two of the most common ways. The syntax for the SUM function is =SUM(range ofvalues to

    total).

    Entering a SUM FunctionOne way to enter a SUM function is to type the function in its syntax directly into a cell where you want

    the answer. Like other formulas, Excel will display the answer in the current cell, but display the actual

    function in the Formula bar.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    9/55

    Entering an Argument with the KeyboardWhen you enter function arguments with the keyboard, you type the cell addresses you want to add. If the

    cell addresses are adjacent to each other, you separate them with a colon (:). For example, typing B2:B5

    will add the values in B2 plus B3 plus B4 plus B5. If the cell addresses you want to add are not adjacent,

    you separate them with a comma. For example, B2, B5, B13 will add the values in cells B2 and B5 and

    B13 but not the value of any cells in between. You can also combine adjacent and non-adjacent cells, such

    as B2, B5, B13:B15 which would add the values in the cells B2 and B5 and B13, B14, and B15.

    NOTEWhen typing a cell address, the address is not casesensitive, but you must remember to type the column

    letter first, followed by the row number.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    10/55

    Entering an Argument with the Mouse

    Instead of typing cell addresses, you can use your mouse to highlight the desired cells. Highlighting thecells instead of typing them makes it easier to see that you have selected the correct cells.

    NOTEIf you have a non-adjacent range to select, separate them with a comma so Excel will let you continue to

    the next selection.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    11/55

    Using the AutoSum Button

    Since the SUM function is the function used most, Microsoft includes a button for it on the standard Exceltoolbar. This makes creating a simple addition formula a mouse click away!

    If you want to total different cells than Excel has highlighted, select them with your mouse.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    12/55

    Using Other Functions

    As mentioned at the beginning of this chapter, Excel includes over 230 different built-in functions that aredivided into categories according to the function's purpose. The SUM function, for example, is considered a

    mathematical function.

    Calculating with Mathematical Functions

    You have learned how to create a mathematical function to add a series of numbers together by using the

    SUM function. Excel includes many other mathematical functions, including some for complex

    trigonometry calculations. The next section illustrates a couple of other commonly used mathematical

    functions.Using the INT FunctionThe INT function rounds a number down to the nearest integer. The number can be a specific number you

    type or, more commonly, the reference to a specific cell. The syntax is =INT(cell address or number). For

    example, to find the integer of cell B3, you would enter =INT(B3).

    NOTE

    Functions can be nested. For example, to find the integer of the SUM of a range of cells, you might type

    =INT(=SUM(B3:B10)). Excel will add each cell and round down the total.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    13/55

    Using the ROUND Function

    Whereas the INT function displays whole numbers for you, the ROUND function takes a value and rounds

    it to a specified number of digits. The ROUND function contains two different arguments; one to specify

    which cell you want to round and the second to tell Excel how many decimal places you want to display.

    The syntax is =ROUND(number,num of digits). For example, if cell B10 has a value of 79.3264 and you

    want it rounded to two decimal places, you would enter =ROUND(B10,2); then Excel would display the

    answer of 79.3300.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    14/55

    Analyzing with Statistical Functions

    Statistical-based functions provide a means for analysis of data. Statistical analysis helps you explore,

    understand and visualize your data.

    Using the AVERAGE Function

    The AVERAGE function finds an average of a range of values. The syntax for this function is

    =AVERAGE(range of values toaverage). An example might be =AVERAGE(B7:D7), which would add

    the values in the three cells B7, C7, and D7, then divide that total by three to get the average value.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    15/55

    Using the MAX and MIN Functions

    Two other common statistical functions are the MAX and MIN functions. The MAX function will display

    the largest value in a range of cells, whereas the MIN function will display the smallest value in a range of

    cells. The syntax is =MAX(rangeof values) or =MIN(range of values).

  • 8/9/2019 Advance Excel 2003 Updated PDF

    16/55

    Using the COUNT and COUNTA Functions

    The COUNT function is handy to find out how many numerical entries are in a specified area. The

    COUNTA function is similar except it is not limited to numerical entries; it will count any non-blank cell,

  • 8/9/2019 Advance Excel 2003 Updated PDF

    17/55

    no matter what type of information the cell contains. The syntax of these functions is very similar:

    =COUNT(range of cells tocount) and =COUNTA(range ofcells to count).

  • 8/9/2019 Advance Excel 2003 Updated PDF

    18/55

    Using Date Functions

    Date functions are commonly used to enter the current date into a worksheet, or to calculate the difference

    between two or more dates. Excel stores dates as sequential serial numbers so they can be used in

    calculations. By default, January 1, 1900 is serial number 1, and September 16, 2003 is serial number

    37880, because it is 37,880 days after January 1, 1900. When you type a date in Excel, it will display the

    date in a regular date format, such as 9/16/2003, but behind the scenes Excel still considers that date a serial

    number.

    Because dates and times are values, they can be added, subtracted, and included in other calculations.

    Using the NOW Function

    If you enter the NOW function in a cell, Excel will display the current date and time. The date and time are

    dynamic in that the current date and time will change whenever you recalculate anything in the worksheet.

    By default, Excel recalculates the worksheet whenever any changes, additions, or deletions are made. The

    NOW function does not contain any arguments, so the syntax is =NOW().

  • 8/9/2019 Advance Excel 2003 Updated PDF

    19/55

    Finding the Difference between Two Dates

    A very popular use for entering dates in an Excel worksheet is to find the number of days between two

    dates. Since Excel stores dates as serial numbers, you can create a simple mathematical function to figure

    the number of days between two dates. While this is more of a formula instead of an Excel function, the

    mathematical calculation can include a cell with a date function, such as =NOW.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    20/55

    The example you see here is a formula to subtract the project start date from today's date, so the formula is

    A1-D4.

    NOTEYou cannot subtract a date that is later than another date, or the error #### appears in the cell.

    Since both of the original dates are in a date format, Excel will display the difference in a date format. You

    will need to tell Excel to display that value as a number.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    21/55

    NOTEUnfortunately, there is no easy method to calculate the exact difference in years. While you can change the

    mathematical formula to divide the total by 365, this calculation does not take into account leap years. It

    will, however, give a pretty close calculation of years.Figuring with Financial FunctionsFinancial functions perform elaborate calculations such as returns on investments or cumulative principal

    or interest on loans. Functions exist to calculate future values or net present values on investments or to

    calculate amortization.

    Using the PMT Function

    The PMT function calculates the payment for a loan based on a constant interest rate. You will need to

    enter the interest rate, the number of payments, and the amount of the loan. The syntax is

    =PMT(rate,nper,pv,fv,type) where rate is the interest rate, nper is the number of payments and pv is the

    loan amount. There are two other optional arguments, includingfv, (future value),which Excel assumes to

    be zero unless you enter anfv. The other optional argument is for type, which refers to when the payment is

    due.

    NOTE

    Be uniform about the units you use for specifying rate and nper. If you make monthly payments on a six-year loan at an annual interest rate of 8 percent, use 8%/12 for rate and 6*12 for nper. If you make annual

    payments on the same loan, use 8 percent for rate and 6 for nper.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    22/55

    NOTEThe payment amount returned by PMT includes principal and interest only

    Understanding Logical FunctionsYou have seen that most functions work in basically the same way. You enter the equal sign, enter the

    function name, and then tell the function which data to use. Most functions involve some sort of

    mathematical calculation. Logical functions are different in that they use operators such as equal to (=),

    greater than (>), less than (=), less than or equal to (

  • 8/9/2019 Advance Excel 2003 Updated PDF

    23/55

    NOTE

    If you want the result to be text, the result must be enclosed in quotation. The quotation marks will not be

    displayed in the answer. No quotation marks are needed if the result is numeric.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    24/55

  • 8/9/2019 Advance Excel 2003 Updated PDF

    25/55

    Conditional Formatting

    When you use conditional formatting, you can instruct Excel to change the formatting for a cell if the cell's

    value meets a certain criteria. For example, if the sales for a particular salesperson meets a quota, you could

    have Excel add blue shading and a border to the cell.

    The second drop-down menu provides a list of operators such as greater than, less than, equal to, and

    between.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    26/55

  • 8/9/2019 Advance Excel 2003 Updated PDF

    27/55

    MACRO

    To record a macro From the Tools menu, point to Macro and click on Record New Macro.

    From the Record Macrodialog boxdisplayed, enter a name for the macro in the Macro name: text box.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    28/55

    The default description is displayed in the Description: text box, and contains the date and user name. If

    required, change it. To begin recording, click OK .

    Perform the actions you want the macro to record. Actions can be any combinations of Excel commands.

    To stop recording, from the Tools menu, point to Macro and click on Stop Recording.

    To assign a shortcut key to the macro From the Tools menu, point to Macro and click on Macros. From the Macro dialog box displayed, select the macro name (if recorded before) to which you want to assigna shortcut key.

    Click the Options button to display the Macro Options dialog box.

    Type a letter into the Ctrl+ text box. This combination key will be used to invoke the macro. Click OK to return to the Macro dialog box.

    Click on the Cancel button to close.

    To run a macro using the Tools Macro command From the Tools menu, point to Macro and click on Macros.

    From the Macro dialog box displayed, click on the name of the macro you wish to run in the Macro name: list

    box. Click the Run button.Note: If you wish to edit or delete a macro, just click on the particular button.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    29/55

    To run a macro using the assigned shortcut key Press Ctrl+?, with ? is the letter which you assigned.

    To create a button and assign an Excel macro to it If the Forms toolbar is not display, right click on any toolbar that is visible and from the pop-up menu that is

    displayed select Forms. To create a button, click the Button icon on the Forms toolbar.

    Then, click and drag the mouse to the intended button size.

    When release the mouse button, the Assign Macro dialog box will be displayed.

    Click on the Record button and the Record Macro dialog box will be displayed.

    Enter a name for the macro in the Macro name: text box. Click on the OK button.

    Record your macro in the normal way, and click on the button and select Edit Text from the pop-up menu.

    To run the macro, simply click on the button.

    To change a button name Double click on the button to highlight the button name. Type in a new name and click on any worksheet cell to deselect the button.

    To delete a button Click on button and press the Delete key.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    30/55

    The Excel Formatting - Fonts

    To change the font used in a cell or range of cells Select the cell or range of cells you wish to change. On the Excel Formatting toolbar choose a font from the Fontdrop down list.

    To change other font characteristics Select the cell or range you wish to change.

    From the Format menu, click Cells.

    From the Format Cellsdialog box displayed, select the Font tab to change the Font, font style, or size.

    Select the Underline: drop down list box to select a style of underline or None to remove the underlining. Select the Color: drop down list box to choose a font color.

    In the Effects section, you can tick Strikethrough, Superscript, or Subscript.

    To change all the settings in the dialog box back to the Normal style which is set in the Style dialog box, tickthe Normal font check box.

    Select OK to close the Format Cells dialog box.

    The Excel Formatting - Alignment

    To align data between the left and right sides of a cell Select the cell, or cells, you wish to align.

    On the Excel Formatting toolbar, click on the Align Left icon to align data with the left edge of the cell.

    Click on the Align Right icon to align data with the right edge of the cell. Click on the Center icon to center data in the cell.

    To align data between the top and bottom of a cell Select the cell, or cells, you wish to align.

    From the Format menu, click Cells.

    From the Format Cells dialog box displayed, click on the Alignment tab.

    In the Text alignment section, choose the Top, Center, or Bottom option in the Vertical area to align the

    data in the cell. To make the lines of data fit evenly within the height of a cell, tick the Justify distributed option and click onOK .

    To change the orientation of data cells Select the cell, or cells, you wish to change.

    From the Format menu, click Cells. From the Format Cells dialog box displayed, click on the Alignment tab.

    In the Orientation section, you can change the Degrees of the text or use the mouse to drag the 'red smalldiamond' up or down. When satisfied, click on OK .

  • 8/9/2019 Advance Excel 2003 Updated PDF

    31/55

    To wrap multiple lines of data in a cell Type the data you require into the cell and press Enter. The entry will appear as one long line and select thecell, or cells, you wish to format.

    From the Format menu, click Cells.

    From the Format Cells dialog box displayed, click on the Alignment tab.

    In the Text control section, tick the Wrap text check box and click on OK .

    To shrink the text into one cell Type the data you require into the cell and press Enter.

    From the Format menu, click Cells. From the Format Cells dialog box displayed, click on the Alignment tab.

    In the Text control section, tick the Shrink to fit check box and click on OK.

    To merge several cells Select the cells that you wish to merge to become one cell.

    Right-click on the selected cells, click Format Cells. From the Format Cells dialog box displayed, click on the Alignment tab.

    In the Text control section, tick the Merge cells check box and click on OK .Note: You also can use the Merge and Center icon on the Excel Formatting toolbar.

    The Excel Formatting - Colors

    To change the color of text Select the cells containing the data you want to change the color.

    On the Excel Formatting toolbar, click the down arrow next to the Font Color icon.

    Choose a color from the Font Color palette.

    The color you selected from the Font Color palette will be displayed on the new icon face. Click on the iconface to apply the new color to the cell.

    To apply colors to cell(s) Select the cell or range of cells you wish to color.

    On the Excel Formatting toolbar, click the down arrow next to the Fill Color icon. Choose a color from the Fill Color palette.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    32/55

    To turn off the cell(s) color Select the cell or range of cells you wish to color.

    On the Excel Formatting toolbar, click the down arrow next to the Fill Color icon.

    Choose No fill.

    The Excel Formatting - Numbers

    To change number formatting using the formattingicons You can quickly change the formatting of a cell or selected range by using the following icons on theFormatting toolbar.

    Currency 12345 will become $12,345.00Percent .25 will become 25%Comma 98765 will become 98,765.00Increase Decimal 12,345.00 will become 12,345.000Decrease Decimal 98,765.00 will become 98,765.0

    To format a number as a currency Select the cell or range of cells you want to format.

    From the Format menu, click Cells. From the Format Cells dialog box displayed, select the Number tab.

    In the Category: section, select Currency .

  • 8/9/2019 Advance Excel 2003 Updated PDF

    33/55

    Select the number of decimal places you require by using the Decimal places: spin box arrows.

    In the Symbol: section drop down list, select the type of currency.

    Click OK .

    To format a number as a percentage Select the cell or range of cells you wish to format. From the Format menu, click Cells.

    From the Format Cells dialog box displayed, select the Number tab.

    In the Category: section, select Percentage.

    Select the number of decimal places you require by using the Decimal places: spin box arrows. Click OK .

    To specify a password for opening and modifying aworkbook From the File menu, click Save As.

    From the Save Asdialog boxdisplayed, click on the Tools icon and from the drop down list displayed, selectGeneral Options.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    34/55

    From the Save Options dialog box displayed, enter a password into the Passw ord to open: text box. Infuture you will be required to enter this password in order to open the file.

    If you enter a password into the Passw ord to modify: text box, this gives others the ability to open, view and

    edit a workbook, but not to save it with the same name. They must save a modified version of the workbook witha different name.

    Click on the OK button. You will be asked to re-type the password to ensure that it is consistent.Note:(1) The check box "Always create backup" forces Excel to create a backup copy of the file every time a worksheetfile is saved. The file extension BAK is used, and the backup file is saved in the same folder as the original file.

    (2) If the "Read-only recommended" check box is ticked, the following dialog box is displayed when the file is re-opened.

    Click Yes .

    The file is reopen but with the feature read-only.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    35/55

    If you needed to make changes on the worksheet, you cannot save the file with the same file name. So,changing the file name allows you to save the file.

    To remove a password from a workbook Open the workbook containing the password you wish to remove (by entering the password when prompted).

    From the File menu, click Save As.

    From the Save As dialog box displayed, click on the Tools icon, and from the drop down list displayed selectGeneral Options.

    From the Save Options dialog box displayed, clear either or both passwords text box. Click on the OK button to close the Save Options dialog box.

    Click on the Save button to save the file, which will display a dialog box.

    Click on the Yes button.

    To protect a workbook From the Tools menu, point to Protection and click on Protect Workbook. This will display the Protect Workbook dialog box.

    From the Protect Workbook dialog box displayed, you have two options:

    Structure Prevents any changes to the structure of the workbook if checked. i.e. you will be unable to edit,

    insert, delete, rename, copy, move or hide sheets.

    Windows Prevents changes to the workbooks size. The windows re-sizing controls (close, maximize, minimizeand restore) are hidden.

    In the Password column, you can enter a password (case sensitive). Click OK .

    You will be asked to re-type the password to ensure that it is consistent.

    Click OK .

    To unprotect a workbook From the Tools menu, point to Protection and click on Unprotect Workbook.

    Enter the required password and click on OK .

    To protect a worksheet From the Tools menu, point to Protection and click on Protect Sheet. This will displays the Protect Sheet dialog box.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    36/55

    From the Protect Sheet dialog box displayed, you can choose any option from the lists if you ALLOW other

    users to modify the checked option in the worksheet. In the Passw ord to unprotect sheet: column, you can enter a password (case sensitive). Click OK .

    You will be asked to re-type the password to ensure that it is consistent.

    Click OK .

    To unprotect a w orksheet From the Tools menu, point to Protection and click on Unprotect Worksheet. Enter the required password and click on OK .

  • 8/9/2019 Advance Excel 2003 Updated PDF

    37/55

    Step 1: The Chart Wizard (1) Chart Type

    Click on any cell within the data containing the information that you wish to display as a chart, or highlight theexact data that you wish to display as a chart.

    Click the Chart Wizard icon on the Standard toolbar. This will display the Excel Chart Wizard as show below:

    From the Chart type: section you can select the type of chart that you wish to create. Then from the Chart sub-type: section you can select the exact format that you required for the selected

    chart type. To see how the selected chart will look, use the Press and Hold to View Sample button within the dialogbox. In our example, we accept the default selection.

    Click the Next button to see the next page of the dialog box - Chart Source Data.

    Step 2: The Excel Chart Wizard (2) Data Source

  • 8/9/2019 Advance Excel 2003 Updated PDF

    38/55

  • 8/9/2019 Advance Excel 2003 Updated PDF

    39/55

    To customize the chart axis From the Chart Option dialog box displayed, click on the Axes tab.

    It allows you to control the way the axes are displayed, you can tick or un-tick the check box to see the effectson the chart.

    To customize chart gridlines From the Chart Option dialog box displayed, click on the Gridlines tab.

    You can choose to display the major and minor X and Y gridlines for the axis by clicking on the particular checkbox.

    To customize chart legend From the Chart Option dialog box displayed, click on the Legend tab.

    You can choose to display or not the chart legend and the placement of the legend in the chart by clicking on

    the radio button.

    To customize data labels From the Chart Option dialog box displayed, click on the Data Labels tab. You can choose to display or not the chart data labels by clicking on the radio button.

    To display a data table From the Chart Option dialog box displayed, click on the Data Table tab.

    You can choose to display or not the chart data table by ticking on the check box.

    Click on the Next button to continue and this will display the final page of the Chart Wizard Chart Location.

    Step 4: The Excel Chart Wizard (4) Chart Location

    To define the chart location You can choose to place the chart on an existing worksheet as an object, or you can place it on a newworksheet. Two options for you to choose:As new sheet: It will place the chart in the new worksheet.As object in: - It will place the chart in the existing worksheet.

    Click on the Finish button and the chart will be created as you have specified during the Chart Wizardcreation process.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    40/55

    Excel Printing - Page Settings

    The options that can change here includes the paper orientation, set the page scale and size, and printquality.

    To change Page Setup options From the File menu, click Page Setup.

    From the Page Setupdialog boxdisplayed, click on the Page tab.

    To set the printing paper orientation In the Orientation section, select Portrait or Landscape by clicking the option button.

    To set the scale of the page In the Scaling section, choose the Adjust to: option button and enter a percentage to scale (in

    conjunction with normal size) in the Adjust to spin box. Choose the Fit to: option and enter the dimensions of the pages in the wide and tall spin boxes.

    To set other printing optionsPaper size In the Paper size: drop-down list box, select the size you require.Print quality In the Print quality: drop-down list box, choose the quality you require (higher dpi better quality).Page numbering To begin page numbering with a different number, select the First pagenumber: text box and enter the number you want to use.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    41/55

  • 8/9/2019 Advance Excel 2003 Updated PDF

    42/55

  • 8/9/2019 Advance Excel 2003 Updated PDF

    43/55

    Make changes to any of the following:

    Print area Enter the worksheet range you want to print, or click on the icon in the right of the textbox and drag through the worksheet areas you wish to print.Rows to repeat at top Click on the icon in the right of the text box and drag over the rows you wish torepeat at the top of the page. It enables you to print the selected top row appear on every printing sheet.Columns to repeat at left Click on the icon in the right of the text box and drag over the columnsyou wish to repeat at the left of the page. It enables you to print the selected left columns appear onevery printing sheet.Elements that will print Tick on the element you wish to print, i.e. Gridlines, Black and White,

    Draft Quality, Row and Column Headings (see below).Page order Select Down, then over, or Over, then down. You only can see the effect if you havedata across a sheet that cannot fit into one printing page.

    More on printing elements (when you tick on the following option):

    Gridlines Will print the Excel gridlines.Black and white Will print the data in blank and white without color.Draft quality The printing will be in draft quality, not the normal quality.Row and column headings Will print the worksheet including the row and column headings.

    In the right hand side, there are three buttons:

    Options Do necessary adjustment with the printer settings.Print Preview Preview your worksheet before printing.Print Print the worksheet.

    To change the Excel printing settings From the File menu, click Print. From the Print dialog box displayed, do the necessary changes as follow:

  • 8/9/2019 Advance Excel 2003 Updated PDF

    44/55

    From the Printer section, the Name: list box, choose the printer you wish to use. In the Page range section, select whether you want to print Al l pages in a range, or enter the startingand ending page numbers in the From: and To: spin boxes. Select what you want to print in the Print what section, i.e. Selection, Active sheet(s), or Entireworkbook. Specify the number of copies you want to print in the Number of copies: spin box. Click the Properties button to display the Properties dialog box for the printer. Change the options required. The options will vary depending on what type of printer you have. Click OK to close the printer properties dialog box. Click OK again to start printing the worksheet.

    Note: Before hit the OK button, ensure that you have put the plain papers to the printer tray.

    GOAL SEEK

    Excel's Goal Seek feature allows you to alter the data used in a formula in order to find out what the results willbe.

    The different results can then be compared to find out which one best suits your requirements.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    45/55

    1. Enter the following data into the cells indicated:

    Cell - Data

    D1 - Loan RepaymentD2 - Rate:D3 - # of Payments:D4 - Principal:

    D5 - Payment:

    E2 - 6%E3 - 60E4 - $225,000

    1. Click on cell E5 and type the following formula:

    = pmt ( e2 / 12 , e3 , -e4 )

    and press the ENTER key on the keyboard

    2. The value $4,349.88 should appear in cell E5. This is the current monthly payment for theloan.

    Altering the monthly payment using Goal Seek

    3. Click on the Data tab.

    4. Choose What-If Analysis from the ribbon to open the drop down list.

    5. Click on Goal Seek... in the list to bring up the Goal Seek dialog box.

    6. In the dialog box, click on the Set cell: line.

    7. Click on cell E5 in the spreadsheet since we are interested in altering the monthlypayments for this loan.

    8. In the dialog box, click on the T0 value: line.

    9. Type 3000 since we would like to lower the monthly payment to $3000.00.

    10. In the dialog box, click on the By changing cell: line.

    11. Click on cell E3 in the spreadsheet since we want to change the monthly payment byaltering the total number of payments to be made.

    12. Click OK.

    13. At this point, Goal Seek should begin searching for a solution. If it finds one, the Goal Seekdialog box will inform you that a solution has been found.

    14. In this case, the solution is to change the number of payments in cell E3 to 95.25.

    15. To accept this solution, click OK in the Goal Seek dialog box and Goal Seek will alter the

    data in cell E3.

    16. To find a different solution, click Cancel in the Goal Seek dialog box. Goal Seek returns thevalue in cell E3 to 60. You are now ready to run Goal Seek again.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    46/55

    PIVOT TABLE

    To create a PivotTable report:

    1. Select any cell in the source data, and press Ctrl+Shift+* (in Excel 2003, pressthis or Ctrl+A).

    2. Press Ctrl+F3, and then type the defined Name for the source data.3. From the Data menu, select PivotTable and PivotChart Report.4. In Step 1 of 3, select Microsoft Excel list or database, and then click Next.

    In Step 2 of 3, in the Range box, press F3 to open the Paste Name dialog box, andpaste the Name of the source data as defined in step 2.

    5. Click Next.6. In Step 3 of 3, click Layout (in Excel 97, go to step 8).7. In Excel 2002 and Excel 2003, you can skip this step. Instead, click Finish in Step2 of 3 and then create the PivotTable report by dragging the fields from the PivotTable Field List dialog box to the PivotTable report.8. In the Layout dialog box, drag the Data Fields to the white Data area, and drag allother fields to the white Page area (except fields that are not going to be used in thePivotTable report), and then click OK.9. In Step 3 of 3, click Finish. The PivotTable report is created.10. Drag Data (in cell A5 in the screenshot) to the right of the PivotTable report tochange the layout from horizontal to vertical.11. The PivotTable report is now ready to be used. For more details on how to usethe PivotTable report properly, see the other tips in this category.

    DATA VALIDATION

    1. Select the range of cells you want to use as your data validation values.

    2. Choose Name from the Insert menu, and then Define from the submenu.

    Excel displays the Define Name dialog box. (Click here to see a related

    figure.)

    3. Enter a unique name for your data validation range, such as MyValRange,

    then click on OK.

    4. Select the cell for which you want to define a validation rule.

    5. Choose Validation from the Data menu. Excel displays the Data Validation

    dialog box. (Click here to see a related figure.)

    6. Use the Allow and Data drop-down lists to specify how you want Excel to

    validate the data. Depending on your selections, you will see a Value,

    Minimum, or Maximum boxes appear in the dialog box.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    47/55

    7. In the appropriate boxes (Value, Minimum, or Maximum), specify the

    name you gave your data validation range, in step 3. For instance, you

    could enter MyValRange.

    8. Click on OK.

    This approach works great if the data validation range is in the same workbook. What if

    you want to use a data validation range that is in a different workbook entirely? You can

    trick Excel into accepting your external reference if, in step 7, you enter a formula such

    as the following:

    =INDIRECT("[Book2]Sheet1!D6")

    This formula uses the INDIRECT function to return the value at a cell on another

    worksheet, and the data validation feature will accept it with no problems. In this case the

    cell being checked is at cell D6 on Sheet1 of Book2. In order for this to work, you will

    need to make sure that Book2 is open at the same time that your main workbook is open.

    SOLVER

    Setting up the problem

    The first step in using the Solver command is to build a Solver-friendly worksheet. This involves creating a

    target cellto be the goal of your problemfor example, a formula that calculates total revenueand

    assigning one or more variable cellsthat the Solver can change to reach your goal. Your worksheet can also

    contain other values and formulas that use the target cell and the variable cells. In fact, for the Solver to do

    its job, each of your variable cells must be precedentsof the target cell. (In other words, the formula in the

    target cell must reference and depend on the variable cells for part of its calculation.) If you dont set it up

    this way, when you run the Solver youll get the error message, The Set Target Cell values do not

    converge.

    Figure 1 shows a simple worksheet that we can use to estimate the weekly revenue for our example coffee

    shop and to determine how many cups of each type of coffee we will need to sell. The worksheet in the

    figure appears in Formula Auditing mode, which was enabled by choosing Tools, Formula Auditing,

    Formula Auditing Mode. Cell G4 is the target cell that calculates the total revenue that the three coffee

  • 8/9/2019 Advance Excel 2003 Updated PDF

    48/55

    drinks generate. The three lines that converge in cell G4 were drawn by selecting that cell and choosing

    Tools, Formula Auditing, Trace Precedents. The arrows show how the formula in cell G4 depends on

    three other calculations for its result. (To remove the arrows, choose Tools, Formula Auditing, Remove All

    Arrows.)

    The three variable cells in the worksheet are cells D5, D9, and D13these are the blank cells whose values

    we want the Solver to determine when it finds a way to maximize our weekly revenue.

    Note The workbook used in this example, Solver.xls, is included in the sample files download.

    In the bottom-right corner of our screen is a list of constraints we plan to use in our forecasting. A constraint

    is a limiting rule or guiding principle that dictates how the business is run. For example, because of storage

    facilities and merchandising constraints, were currently able to produce only 500 cups of coffee (both

    regular and premium) per week. In addition, our supply of chocolate restricts the production of caffe mochas

    to 125 per week, and a milk refrigeration limitation restricts the production of premium coffee drinks to 350

    per week.

    Figure 1: The commands on the Tools, Formula Auditing submenu help you visualize the relationship

    between cells. Here the target cell depends on three other cells, each of which contains a formula.

    These constraints structure the problem, and well enter them in a special dialog box when we run the Solver

    command. Your worksheet must contain cells that calculate the values used as constraints (in this example,

    G8, G7, and D13). The limiting values for the constraints are listed in cells G11 through G13. Although listing

    the constraints isnt necessary, it makes the worksheet easier to follow.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    49/55

    If your Solver problem contains several variables and constraints, youll find it easiest to enter data if you

    name key cells and ranges in your worksheet by using the Insert, Name, Define command. Using cell names

    also makes it easy to read your Solver constraints later.

    Running the Solver

    After youve defined your forecasting problem in the worksheet, youre ready to run the Solver add-in. The

    following steps show you how to use the Solver to determine the maximum weekly revenue for your coffee

    shop given the following constraints:

    No more than 500 total cups of coffee (both regular and premium)

    No more than 350 cups of premium coffee (both caffe latte and caffe mocha)

    No more than 125 caffe mochas

    In addition to telling you the maximum revenue, the Solver calculates the optimum distribution of coffees in

    the three coffee groups. To use the Solver, complete the following steps:

    1. Click the target cellthe one containing the formula thats based on the variable cells you want

    the Solver to determine. In our example, as shown in Figure 1, the target cell is G4.

    2. Choose Tools, Solver. The Solver Parameters dialog box will open, as shown here:

    3. If the Set Target Cell text box doesnt already contain the correct reference, select the text box

    and then click cell G4 to insert $G$4as the target cell.

    4. Select the Max option following the Equal To label, because you want to find the maximum

    value for the target cell.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    50/55

    5. Click the button at the right end of the By Changing Cells text box to collapse the dialog box.

    Select each of the variable cells. If the cells adjoin one another, simply select the group by dragging

    across the cells. If the cells are noncontiguous, as in our example, hold down the Ctrl key and click

    each cell (this will place commas between the cell entries in the text box).

    For our example, select cells D5, D9, and D13 (the three blank cells reserved for the number of cups

    of coffee that need to be sold in each category), which will place the following value in the By

    Changing Cells text box: $D$5,$D$9,$D$13, as shown here:

    Tip: Use the Guess button to preview the result

    If you click the Guess button, the Solver tries to guess at the variable cells in your forecasting

    problem. The Solver creates the guess by looking at the cells referenced in the target cell formula.

    Dont rely on this guess, thoughits often incorrect!

    6. Constraints arent required in all Solver problems, but this problem has three. Click the Add

    button to add the first constraint using the Add Constraint dialog box.

    The first constraint is that you can sell only 500 cups of coffee in one week. To enter this constraint,

    click cell G8 (the cell containing the total cups formula), select

  • 8/9/2019 Advance Excel 2003 Updated PDF

    51/55

    When youre done, click the Add button in the Add Constraint dialog box to enter the first constraint.

    Note You have the option of typing a value, clicking a cell, or entering a cell reference or name in the

    Constraint text box. If you click a cell that has a defined name, Excel will use that name when you

    add the constraint.

    7. Define the second constraintyou can sell only 350 premium coffees in one week. With the

    insertion point in the Cell Reference text box, click cell G7 (the cell containing the premium cups

    formula), select

  • 8/9/2019 Advance Excel 2003 Updated PDF

    52/55

    To modify one of the constraints that appears in the Solver Parameters dialog box, select the

    constraint and click the Change button. To customize the iteration and calculation parameters in the

    Solver utility, click the Options button and make your adjustments.

    10. Your forecasting problem is ready to go, so click the Solve button to calculate the result.

    After a brief pause the Solver will display the Solver Results dialog box describing how the

    optimization analysis went. If the Solver runs into a problem, youll see an error message, and you can

    click the Help button to learn more about the difficulty. If the Solver finds a solution, you see the

    following dialog box:

    11. To display the new solution in your worksheet, select the Keep Solver Solution option in the

    Solver Results dialog box and then click the OK button. The Solver will place an optimum value in

    the target cell and will fill the variable cells with the solutions that best match the constraints you

    specified, as shown in Figure 2.

    In this example, youve learned that if youre limited to selling 500 cups of coffee per week, you can expect a

    maximum of $918.75 in revenue and your optimum drink distribution is 150 cups of regular coffee, 225 cups

    of caffe latte, and 125 cups of caffe mocha. Although this financial model doesnt consider several realistic

    business variables, such as the costs associated with running a shop and the benefits of making volume

    purchases, it does help you to forecast much more easily and quickly than you could using pencil and paper.

  • 8/9/2019 Advance Excel 2003 Updated PDF

    53/55

  • 8/9/2019 Advance Excel 2003 Updated PDF

    54/55

  • 8/9/2019 Advance Excel 2003 Updated PDF

    55/55