DISPLAYING IMAGES BASED ON A RESULT

www.office.com/setup Blogs: Dave has a large database that he keeps in an Excel workbook. It consists of material samples and uses the VLOOKUP function to generate various forms and reports. Dave wants to include a bitmap image on the form that changes according to one of the variables. For instance, if the form is describing an apple, then Dave wants a picture of an apple to appear; if describing a pear, then a pear should appear; and so on. This is certainly a challenging task, but it is one that can surprisingly be done without macros. The steps are involved, but not that difficult to perform once you get to it:
    1. On a new worksheet, select a cell (such as cell B4).
    2. Enter the name “apple” into the Name box. This defines the name “apple” to refer to cell B4.
    3. With cell B4 still selected, choose Insert | Picture | From File. Select the picture of the apple and insert it.
    4. Enlarge the width and height of cell B4 so that the picture of the apple is contained entirely within the cell.
    5. Repeat steps 1 through 4 for each of your other pictures, placing each picture in a different cell and naming them according to the contents of the picture. (For the sake of this example, I’ll assume that “pear” is cell D4 and “orange” is cell F4.)
    6. On the worksheet that will contain your form, create a formula that will contain the names of the fruit, such as the following formula, which displays “apple,” “pear,” or “orange,” depending on the value in cell G1. (It is important that the formula reference the names exactly as you defined them in step 2 for each fruit’s picture. For the sake of this example, I’ll assume that you entered this formula in cell A1 of Sheet1.)
     =IF(G1=1,"apple",IF(G1=2,"pear",IF(G1=3,"orange","")))
    1. Choose Name from the Insert menu, then choose Define. Excel displays the Define Name dialog box. (See Figure 1.)

www.office.com/setup

Figure 1. The Define Name dialog box.

    1. Replace the contents of the Names In Workbook box with the word “Picture”.
    2. Replace the contents of the Refers To box with the following formula:
     =INDIRECT(Sheet1!$A$1)
  1. Click the OK button. You’ve now defined the name “Picture” to contain the formula entered in step 9.
  2. On the worksheet that will contain your form, select the cell where you want the dynamic image to appear.
  3. Choose Insert | Picture | From File. Select and insert a picture (it doesn’t matter which one).
  4. Make sure the picture you inserted in step 12 is selected.
  5. In the formula bar, enter the formula =Picture. (This is the name you defined in steps 7 through 10.) The picture should change to reflect whatever fruit is named in cell A1.
Now, whenever the fruit name in cell A1 changes (which is, in turn, based on the value in cell G1), the image will change.
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (3128) applies to Microsoft Excel 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Excel (Excel 2007 and later) here: Displaying Images based on a Result. Original Post: https://excel.tips.net/T003128_Displaying_Images_based_on_a_Result.html