drop down list selection

C

CandiC

I have an estimating form that we use for estimating service jobs. I entered
a dropdown box at the very top to allow the user to select the correct
customer. However, there are special pricing rates that pull from another
sheet ('Special Rates') this sheet is in order by customer account number.
However, when a customer name is selected from the dropdown box in C83, the
formula set up in the preceding column E84, at needs to pull the correct
customer account number to allow for the rest of the sheet to calculate
properly is, =IF(E84=FALSE,LOOKUP(C83,CustomerName,'SPECIAL
RATES'!A:A),"STANDARD") this only allows for the next, "near match" to pull
up and is resulting in the selection of the wrong account number which
results in the wrong pricing to be selected. Can anyone help?
 
L

Luke M

Formula to find exact match and return the same relative position from
Special Rates:

=IF(E84=FALSE,INDEX('SPECIAL RATES'!A:A,MATCH(C83,CustomerName,0)),"STANDARD")
 

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