Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 45
Default 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
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 45
Default 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



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default 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 -




  #6   Report Post  
Posted to microsoft.public.excel.misc
KC KC is offline
external usenet poster
 
Posts: 107
Default 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 -



  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default 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 -


  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default 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



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Formula needed - is this possible? Kelly 1st Excel Discussion (Misc queries) 2 March 28th 07 03:17 AM
Sum formula needed Zilla Excel Discussion (Misc queries) 2 February 28th 07 01:03 AM
IF-THEN Formula help needed Brandty123 Excel Worksheet Functions 7 July 7th 06 12:05 AM
Formula Set Up Needed unique Charts and Charting in Excel 2 December 4th 05 10:24 PM
Formula needed plfry Excel Worksheet Functions 7 January 5th 05 10:43 PM


All times are GMT +1. The time now is 09:19 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"