Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am looking for a formula that allows the spreadsheet to look in a range of
weights, selects the proper weight range and returns the corresponding rate associated w/ that weight break. Not sure I can do it justice w/out an example. Weight Breaks in POUNDS 0-999 1,000-1,999 2,000-4,999 5,000-9,999 + 10,000 $0.1829 $0.1568 $0.1318 $0.1023 $0.0925 |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=LOOKUP(A1,{1,1000,2000,5000,10000},{0.18,0.16,0.1 3,0.1,0.09})
Vaya con Dios, Chuck, CABGx3 "Dustin" wrote: I am looking for a formula that allows the spreadsheet to look in a range of weights, selects the proper weight range and returns the corresponding rate associated w/ that weight break. Not sure I can do it justice w/out an example. Weight Breaks in POUNDS 0-999 1,000-1,999 2,000-4,999 5,000-9,999 + 10,000 $0.1829 $0.1568 $0.1318 $0.1023 $0.0925 |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() "CLR" wrote: =LOOKUP(A1,{1,1000,2000,5000,10000},{0.18,0.16,0.1 3,0.1,0.09}) Vaya con Dios, Chuck, CABGx3 "Dustin" wrote: I am looking for a formula that allows the spreadsheet to look in a range of weights, selects the proper weight range and returns the corresponding rate associated w/ that weight break. Not sure I can do it justice w/out an example. Weight Breaks in POUNDS 0-999 1,000-1,999 2,000-4,999 5,000-9,999 + 10,000 $0.1829 $0.1568 $0.1318 $0.1023 $0.0925 |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
lets say your data is arrange like this (in general format)
A B C D E 1 0 1000 2000 5000 10000 2 0.1829 0.1568 0.1318 0.1023 0.0925 and your lookup criteria is on A4 : a number equal or greater than 0 and your lookup formula on A5 : =LOOKUP(A4,A1:E1,A2:E2) happy holiday "Dustin" wrote: I am looking for a formula that allows the spreadsheet to look in a range of weights, selects the proper weight range and returns the corresponding rate associated w/ that weight break. Not sure I can do it justice w/out an example. Weight Breaks in POUNDS 0-999 1,000-1,999 2,000-4,999 5,000-9,999 + 10,000 $0.1829 $0.1568 $0.1318 $0.1023 $0.0925 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Spreadsheet to compute the swing weight of a golf club... | Excel Worksheet Functions | |||
Automatic page breaks | Excel Discussion (Misc queries) | |||
Floating Page Breaks | Excel Discussion (Misc queries) | |||
Hard breaks in text to soft breaks in Excel | Excel Discussion (Misc queries) | |||
How to determine a quantity that is weight restricted... | New Users to Excel |