ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   IF AND Formula Help Needed (https://www.excelbanter.com/excel-discussion-misc-queries/176290-if-formula-help-needed.html)

Karen Smith

IF AND Formula Help Needed
 
Can someone help me create a formula for:

If tab "Worker Be" cell B9 = "CD" and
"Worker Be" cell J9 is empty and
Y9 (on current tab) does not = "C."
then the answer should be zero

then
If tab "Worker Be" B9 = "SM" and
"Worker Be" H9 = "Yes" and
if "Worker Be" J9 = either "Big Word" or "WTOO" or "Global Doc"
than ("Worker Be" E9 * $22.50 plus "Worker Be" AF9 * $200) * "Worker Be" I9
otherwise the answer should be zero

Don Guillett

IF AND Formula Help Needed
 
Look in the help index for AND & OR & IF. Study the components and then see
how to put together with IF.

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Karen Smith" wrote in message
...
Can someone help me create a formula for:

If tab "Worker Be" cell B9 = "CD" and
"Worker Be" cell J9 is empty and
Y9 (on current tab) does not = "C."
then the answer should be zero

then
If tab "Worker Be" B9 = "SM" and
"Worker Be" H9 = "Yes" and
if "Worker Be" J9 = either "Big Word" or "WTOO" or "Global Doc"
than ("Worker Be" E9 * $22.50 plus "Worker Be" AF9 * $200) * "Worker Be"
I9
otherwise the answer should be zero



Karen Smith

IF AND Formula Help Needed
 
I've already done that and have worked on the formula for 6 hours, I can't
get it to work. That's why I asked for help creating it.

"Don Guillett" wrote:

Look in the help index for AND & OR & IF. Study the components and then see
how to put together with IF.

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Karen Smith" wrote in message
...
Can someone help me create a formula for:

If tab "Worker Be" cell B9 = "CD" and
"Worker Be" cell J9 is empty and
Y9 (on current tab) does not = "C."
then the answer should be zero

then
If tab "Worker Be" B9 = "SM" and
"Worker Be" H9 = "Yes" and
if "Worker Be" J9 = either "Big Word" or "WTOO" or "Global Doc"
than ("Worker Be" E9 * $22.50 plus "Worker Be" AF9 * $200) * "Worker Be"
I9
otherwise the answer should be zero




Don Guillett

IF AND Formula Help Needed
 
1st scenario
=IF(AND(os!B9="cd",LEN(TRIM(os!J9))<1,y9<"c"),0,n extif)
Can you now work it out?

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Karen Smith" wrote in message
...
I've already done that and have worked on the formula for 6 hours, I can't
get it to work. That's why I asked for help creating it.

"Don Guillett" wrote:

Look in the help index for AND & OR & IF. Study the components and then
see
how to put together with IF.

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Karen Smith" wrote in message
...
Can someone help me create a formula for:

If tab "Worker Be" cell B9 = "CD" and
"Worker Be" cell J9 is empty and
Y9 (on current tab) does not = "C."
then the answer should be zero

then
If tab "Worker Be" B9 = "SM" and
"Worker Be" H9 = "Yes" and
if "Worker Be" J9 = either "Big Word" or "WTOO" or "Global Doc"
than ("Worker Be" E9 * $22.50 plus "Worker Be" AF9 * $200) * "Worker
Be"
I9
otherwise the answer should be zero





Pete_UK

IF AND Formula Help Needed
 
Okay, try this:

=IF(AND('Worker Be'!B9="CD",'Worker Be'!J9="",Y9<"C"),
0,IF(AND('Worker Be'!B9="SM",'Worker Be'!H9="Yes",OR('Worker Be'!
J9="Big Word",'Worker Be'!J9="WTOO",'Worker Be'!J9="Global Doc")),
('Worker Be'!E9*22.5+'Worker Be'!AF9*200)*'Worker Be'!I9,0))

Hope this helps.

Pete

On Feb 11, 2:07*pm, Karen Smith
wrote:
I've already done that and have worked on the formula for 6 hours, I can't
get it to work. *That's why I asked for help creating it.



"Don Guillett" wrote:
Look in the help index for AND & OR & IF. Study the components and then see
how to put together with IF.


--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Karen Smith" wrote in message
...
Can someone help me create a formula for:


If tab "Worker Be" cell B9 = "CD" and
"Worker Be" cell J9 is empty and
Y9 (on current tab) does not = "C."
then the answer should be zero


then
If tab "Worker Be" B9 = "SM" and
"Worker Be" H9 = "Yes" and
if "Worker Be" J9 = either "Big Word" or "WTOO" or "Global Doc"
than ("Worker Be" E9 * $22.50 plus "Worker Be" AF9 * $200) * "Worker Be"
I9
otherwise the answer should be zero- Hide quoted text -


- Show quoted text -



David Biddulph[_2_]

IF AND Formula Help Needed
 
The syntax of the IF, AND, and OR functions are given, with examples, in
Excel help.

If you look back to a question from Karen Smith a couple of months ago,
advice was given as to how to analyse a long formula. The advice remains
unchanged, and applies equally to synthesis as to analysis; look at it a
section at a time.
--
David Biddulph



"Karen Smith" wrote in message
...
Can someone help me create a formula for:

If tab "Worker Be" cell B9 = "CD" and
"Worker Be" cell J9 is empty and
Y9 (on current tab) does not = "C."
then the answer should be zero

then
If tab "Worker Be" B9 = "SM" and
"Worker Be" H9 = "Yes" and
if "Worker Be" J9 = either "Big Word" or "WTOO" or "Global Doc"
than ("Worker Be" E9 * $22.50 plus "Worker Be" AF9 * $200) * "Worker Be"
I9
otherwise the answer should be zero




KC

IF AND Formula Help Needed
 
Pete, thanks so much. You just did in 2 minutes, what I couldn't do in 6
hours. I really appreciate your help.

"Pete_UK" wrote:

Okay, try this:

=IF(AND('Worker Be'!B9="CD",'Worker Be'!J9="",Y9<"C"),
0,IF(AND('Worker Be'!B9="SM",'Worker Be'!H9="Yes",OR('Worker Be'!
J9="Big Word",'Worker Be'!J9="WTOO",'Worker Be'!J9="Global Doc")),
('Worker Be'!E9*22.5+'Worker Be'!AF9*200)*'Worker Be'!I9,0))

Hope this helps.

Pete

On Feb 11, 2:07 pm, Karen Smith
wrote:
I've already done that and have worked on the formula for 6 hours, I can't
get it to work. That's why I asked for help creating it.



"Don Guillett" wrote:
Look in the help index for AND & OR & IF. Study the components and then see
how to put together with IF.


--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Karen Smith" wrote in message
...
Can someone help me create a formula for:


If tab "Worker Be" cell B9 = "CD" and
"Worker Be" cell J9 is empty and
Y9 (on current tab) does not = "C."
then the answer should be zero


then
If tab "Worker Be" B9 = "SM" and
"Worker Be" H9 = "Yes" and
if "Worker Be" J9 = either "Big Word" or "WTOO" or "Global Doc"
than ("Worker Be" E9 * $22.50 plus "Worker Be" AF9 * $200) * "Worker Be"
I9
otherwise the answer should be zero- Hide quoted text -


- Show quoted text -




Pete_UK

IF AND Formula Help Needed
 
Hi Karen,

glad it worked for you - I just transcribed what you had given, so if
you study the solution against your problem definition then perhaps
you will be able to see how to save yourself hours in future if a
similar problem arises for you.

Pete

On Feb 11, 3:13*pm, KC wrote:
Pete, thanks so much. *You just did in 2 minutes, what I couldn't do in 6
hours. *I really appreciate your help.



"Pete_UK" wrote:
Okay, try this:


=IF(AND('Worker Be'!B9="CD",'Worker Be'!J9="",Y9<"C"),
0,IF(AND('Worker Be'!B9="SM",'Worker Be'!H9="Yes",OR('Worker Be'!
J9="Big Word",'Worker Be'!J9="WTOO",'Worker Be'!J9="Global Doc")),
('Worker Be'!E9*22.5+'Worker Be'!AF9*200)*'Worker Be'!I9,0))


Hope this helps.


Pete


On Feb 11, 2:07 pm, Karen Smith
wrote:
I've already done that and have worked on the formula for 6 hours, I can't
get it to work. *That's why I asked for help creating it.


"Don Guillett" wrote:
Look in the help index for AND & OR & IF. Study the components and then see
how to put together with IF.


--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Karen Smith" wrote in message
...
Can someone help me create a formula for:


If tab "Worker Be" cell B9 = "CD" and
"Worker Be" cell J9 is empty and
Y9 (on current tab) does not = "C."
then the answer should be zero


then
If tab "Worker Be" B9 = "SM" and
"Worker Be" H9 = "Yes" and
if "Worker Be" J9 = either "Big Word" or "WTOO" or "Global Doc"
than ("Worker Be" E9 * $22.50 plus "Worker Be" AF9 * $200) * "Worker Be"
I9
otherwise the answer should be zero- Hide quoted text -


- Show quoted text -- Hide quoted text -


- Show quoted text -




All times are GMT +1. The time now is 08:25 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com