Thread: Vlookup help
View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
PCLIVE PCLIVE is offline
external usenet poster
 
Posts: 1,311
Default Vlookup help

If you want to do your calculations all in one shot, then maybe something
like this.

=IF(VLOOKUP(A1,Sheet2!$A$10:$I$24,9,"false")<=2%,8 0%,IF(VLOOKUP(A1,Sheet2!$A$10:$I$24,9,"false")4%, 120%,90%))

Regards,
Paul

--

"Curtis" wrote in message
...
Sheet 1
cell a1 = vlookup data
cell b1 is where I want Vlook up results...curent formla is
=VLOOKUP(A1,'sheet2'!$A$10:$I$24,9,"false")

Sheet 2
vlookup range = 'sheet2'!$A$10:$I$24
Need a formula that will vlookup cell a1 in sheet one and if that number
is
less than or equal to 2% place a value of 80% in cell a1. If the number is
greater than 2 % but less than or eqaul to 4%, place a value of 90% in
cell
A1, and if the number is greater than 4%, place a value of 120%

hope that makes sense

Thanks