View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
patrick molloy patrick molloy is offline
external usenet poster
 
Posts: 391
Default Minimum Cell Value

1)

=MAX(90,IF(Employees<21,2000,IF(Employees<51,2500, IF
(Employees<101,3000,IF(Employees<251,5000,IF
(Employees<376,7000,IF(Employees<501,9000,0)))))))

2) the result of yuor formula will be one of the numbers
2000,2500....9000 or it will be 90, which occurs when
Employees exceeds 500. I can't see where you'd get a
number like 50 from.

Patrick Molloy
Microsoft Excel MVP

-----Original Message-----
Hi,

Wondered if anybody could help me..

I need a cell to display a minimum value of £90 and to

intergrate that into
this formula:

=IF(Employees<21,"£2000",IF(Employees<51,"£2500", IF

(Employees<101,"£3000",IF
(Employees<251,"£5000",IF(Employees<376,"£7000",I F

(Employees<501,"£9000","£0
"))))))

So, if the result from the formula is..say, £50...then

it is automatically
increased to £90.

tia :)


.