+ Reply to Thread
Results 1 to 3 of 3

Using if then formula

  1. #1
    Alexis
    Guest

    Using if then formula

    this is my formula for my excel project
    =IF(OR(D13="Necking",D13="Caution"),"Caution"," ")

    This means if the word Necking appears in my table, then in the cell next to
    it so should the word Caution.
    Now i also want to include the word Fracture in the formula, so when my
    table shows the word Fracture, the word Caution will appear in the cell next
    to it as well.

    is there anyway i can simply put the word "Fracture" into the formula?

  2. #2
    dlw
    Guest

    re: USING IF THEN FORMULA

    try:
    =IF(OR(D13="Necking",D13="Caution",d13="Fracture"),"Caution"," ")

    "Alexis" wrote:

    > this is my formula for my excel project
    > =IF(OR(D13="Necking",D13="Caution"),"Caution"," ")
    >
    > This means if the word Necking appears in my table, then in the cell next to
    > it so should the word Caution.
    > Now i also want to include the word Fracture in the formula, so when my
    > table shows the word Fracture, the word Caution will appear in the cell next
    > to it as well.
    >
    > is there anyway i can simply put the word "Fracture" into the formula?


  3. #3
    joeu2004@hotmail.com
    Guest

    re: USING IF THEN FORMULA

    "Alexis" wrote:
    > this is my formula for my excel project
    > =IF(OR(D13="Necking",D13="Caution"),"Caution"," ")
    > This means if the word Necking appears in my table,
    > then in the cell next to it so should the word Caution.


    That is not exactly what the above formula does. It
    results in the word Caution if D13 has Necking __or__
    Caution. If you simply want what you wrote, the correct
    and sufficient formula is:

    =IF(D13 = "Necking", "Caution", "")


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1