If Statement for Pricing

G

Guest

I have 2 tabs. The first tab "Interview" has a series of questions that must
be answered. The second tab "Price Tool" has pricing on different items.
Depending on how the questions are answered in the "Interview" tab, I want to
calculate a price in the "Price Tool" tab.

For instance, If "interview" cell B3 = YES, and if "interview" cell B8 =
New, then take the price from "Price Tool" cell B6 and multiply it by
"interview" cell b9 and place the answer in the "Price Tool" tab.
 
G

Guest

You didn't say what to put in the cell if these conditions are not met. But
assuming you just want to put 0 (zero) you would put something like this in
the cell on the "Price Tool" tab.

=IF(AND(Interview!B3="YES",Interview!B8="New"),Interview!B9*'Price Tool'!B6,0)

Will
 
J

JP

JINX!

:)

You didn't say what to put in the cell if these conditions are not met. But
assuming you just want to put 0 (zero) you would put something like this in
the cell on the "Price Tool" tab.

=IF(AND(Interview!B3="YES",Interview!B8="New"),Interview!B9*'Price Tool'!B6,0)

Will






- Show quoted text -
 

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