Link to home
Start Free TrialLog in
Avatar of Edward Pamias
Edward PamiasFlag for United States of America

asked on

How do I display something from 2 cells if a conditions matches in another.

Here is what I want to do. If the value of Cell M2 is equal to or greater than 4, I want to display the value of Cell H2 and Cell A2 in Cells  N2 and O2. Just clear it up the title for Column A  is Numbers, Column H is Assigned to and Column M is Days open.
ASKER CERTIFIED SOLUTION
Avatar of Professor J
Professor J

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Professor J
Professor J

i was not sure if you wanted the H2 and A2 joined together or seperate, so i have created two sheets, one of them for joint and the other one is just to show if single value. see the attached workbook
You need to use an IF condition in the formula.

Formula in N2      =IF(M2>=4,H2,"")
Formula in O2      =IF(M2>=4,A2,"")

It's not very clear to me what you want to display IF the value in M2 is less than 4. I've just made it a blank here.
Avatar of Edward Pamias

ASKER

Thanks this was just what I needed.