Multiple Conditions Setup with an Array?? Not Working??

T

TEAM

This is the function that I have enter into Cell W6

=IF(J6:J323="Salary",IF(O6:O6O323>95000,O6*0.3,O6),O6)

I pressed ctrl+Shift+Enter to make it an array. The result is a #Name
error.



I have two columns of data. One says salary or hourly and the othe
has an amount. If the "salary" and ">95000" then I want to multipl
the salary by .3 and put it in column W. If not, then I just want th
salary in column W.

What am I doing wrong
 
T

TEAM

I figured out what I was doing....Two things,

1. I had a typo

2. I don't need an array for this.


...Still learning
 
A

Aladin Akyurek

It seems you want to evaluate per record (row). If so:

In W6 entered & copied down:

=IF((J6="Salary")*(O6>95000),O6*0.3,O6)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top