Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Need help with formula in excel

formula for: if a1 is greater than 1 but less than 10 value is "a" and how to
nest it for 7 iterations
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5,934
Default Need help with formula in excel

Can you explain what you mean by "nest it for 7 iterations"?

--
Rick (MVP - Excel)


"Ron E" <Ron wrote in message
...
formula for: if a1 is greater than 1 but less than 10 value is "a" and how
to
nest it for 7 iterations


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Need help with formula in excel

this is what i need. i appreciate any help

if 0-1.0 value 0.05
if 1-1.0 value 0.1
if '10-40 value 1
if '40-100 value 5
if '100-400 value 10
if 400-1000 value 50
if 1000+ value 100

"Rick Rothstein" wrote:

Can you explain what you mean by "nest it for 7 iterations"?

--
Rick (MVP - Excel)


"Ron E" <Ron wrote in message
...
formula for: if a1 is greater than 1 but less than 10 value is "a" and how
to
nest it for 7 iterations



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5,934
Default Need help with formula in excel

See if this formula does what you want...

=IF(A1<1,0.05,IF(A1<10,0.1,IF(A1<40,1,IF(A1<100,5, IF(A1<400,10,IF(A1<1000,50,100))))))

Note: You end points overlapped (for example, 40 appeared in two test
conditions), so you may want to change my < to <= if I guessed wrong as to
which range you actually wanted them in.

--
Rick (MVP - Excel)


"Ron E" wrote in message
...
this is what i need. i appreciate any help

if 0-1.0 value 0.05
if 1-1.0 value 0.1
if '10-40 value 1
if '40-100 value 5
if '100-400 value 10
if 400-1000 value 50
if 1000+ value 100

"Rick Rothstein" wrote:

Can you explain what you mean by "nest it for 7 iterations"?

--
Rick (MVP - Excel)


"Ron E" <Ron wrote in message
...
formula for: if a1 is greater than 1 but less than 10 value is "a" and
how
to
nest it for 7 iterations




  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Need help with formula in excel

Another one:

=IF(COUNT(A1),LOOKUP(A1,{0,1,10,40,100,400,1000},{ 0.05,0.1,1,5,10,50,100}),"")

--
Biff
Microsoft Excel MVP


"Ron E" wrote in message
...
this is what i need. i appreciate any help

if 0-1.0 value 0.05
if 1-1.0 value 0.1
if '10-40 value 1
if '40-100 value 5
if '100-400 value 10
if 400-1000 value 50
if 1000+ value 100

"Rick Rothstein" wrote:

Can you explain what you mean by "nest it for 7 iterations"?

--
Rick (MVP - Excel)


"Ron E" <Ron wrote in message
...
formula for: if a1 is greater than 1 but less than 10 value is "a" and
how
to
nest it for 7 iterations





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
When I enter a formula, Excel shows the formula not the results Pat Adams Excel Worksheet Functions 5 April 4th 23 11:18 AM
Excel 2002 Formula: Urgent Conditional Formula Required Right Away - if possible blue[_2_] Excel Discussion (Misc queries) 2 July 11th 07 06:08 PM
Build excel formula using field values as text in the formula val kilbane Excel Worksheet Functions 2 April 18th 07 01:52 PM
match formula - 2 excel files:#1 hasthis formula, 2nd has the Raw DS Excel Worksheet Functions 4 October 7th 06 12:25 AM
Excel 2002 formula displayed not value formula option not checked Dean Excel Worksheet Functions 1 February 28th 06 02:31 PM


All times are GMT +1. The time now is 05:57 PM.

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

About Us

"It's about Microsoft Excel"