+ Reply to Thread
Results 1 to 2 of 2

Thread: Get values in a column based on values in two other columns

  1. #1
    ssb
    Guest

    Get values in a column based on values in two other columns

    Hello,

    I have a situation, wherein, Column-A and Column-B can have one of the
    three values: Low, Medium, High. I would like Column C to be filled up
    with a value based on the combination of values in column A and B.

    For example:

    column A Column B Column C
    low low 2
    low medium 10

    Use of =IF(AND(A1='Low',B1='low'),2,1000) works for only one such
    combination. I would like all such cases to be "ORed".

    Any help would be great...!! Thanks.


  2. #2
    duane
    Guest

    RE: Get values in a column based on values in two other columns

    something like this (for row 3) add as many combinations as you like

    =AND(A3="low",B3="low")*2+AND(A3="low",B3="medium")*10

    "ssb" wrote:

    > Hello,
    >
    > I have a situation, wherein, Column-A and Column-B can have one of the
    > three values: Low, Medium, High. I would like Column C to be filled up
    > with a value based on the combination of values in column A and B.
    >
    > For example:
    >
    > column A Column B Column C
    > low low 2
    > low medium 10
    >
    > Use of =IF(AND(A1='Low',B1='low'),2,1000) works for only one such
    > combination. I would like all such cases to be "ORed".
    >
    > Any help would be great...!! Thanks.
    >
    >


+ 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.2.0