RE: Multiple conditions



A different way of doing it
if your H column data starts at say row 10
in M10 enter
=if(H10>=1050,2000),if(H26>=700,3000,if(H26>=525,2000),0)))
in M11 enter
=if(H11>=1500,if(Max(H$10:H11)>=1500,0,2000),if(H11>=1050,if(Max(H$10:H11)>=1050,0,2000),if(H11>=700,if(Max(H$10:H11)>=700,0,3000),if(H11>=525,if(Max(H$10:H11)>=525,0,2000),""))))
and copy down

> Thanks for responding. Your solution answered part of the question, but the
> part that I can't figure out is this:
>
> Once the value of 525 has been reached it enters a value of 2000. On the
> next line it has to revert back to 0 until 700 has been reached where it
> enters a value of 3000. On the next line it reverts back to 0 until 1050 has
> been reached, etc.
>
> In other words the column that enters the value 2000, 3000, etc. can only
> enter that value once a certain objective has been met and can only enter
> that value once.
>
> example:
>
> 525 2000
> 600 0
> 650 0
> 700 3000
> 800 0
> 900 0
> 1000 0
> 1050 2000
>
> thanks!
> --
> j
>
>
.



Relevant Pages

  • Re: Help With Sorting
    ... Need help sorting the column data ... The problem I run into is that I need to sort by the ... Dave Peterson ... Prev by Date: ...
    (microsoft.public.excel)
  • Calculating frequency?
    ... I am trying determine how many times a number occurs a five column data ... sheet. ... Lost in formuland- ... Prev by Date: ...
    (microsoft.public.excel.worksheet.functions)
  • Column Data into a Pie Chart?
    ... I've got an Excel sheet composed of column data. ... I want to put a pie chart on another ... Apples ... Prev by Date: ...
    (microsoft.public.excel.misc)
  • Re: From column to row?
    ... > I have column data in file xy.txt, ... > ABCDD ... Prev by Date: ...
    (perl.beginners)