Help....please.....having problems in Excel with Functions

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a Spread Sheet that has many lines of 4 columns(months) of data ($'s)
ea, if three consecutive months increase in value, I must retain all the
information, if not, I must not include that line of data in the report. I
have tried for 4 hours and cannot make this work. Here is an example of what
I'm faced with.

Jan Feb March April
135 164 256 258 ( I need to keep this line of
data for the Report)
135 260 256 258 (this line would not be included
because Feb to March data did not increase)
I would appreciate any help I could get........... Thanks and have a Great
Evening
 
try a helper column with
=if(and(Mar>feb,or(Feb>jan,apr>mar)),1,0)
use auto filter on this coulumn and delete all of the "0"s
 
The data are in columns A,B,C and D
in E2 enter =IF(AND(B2>A2,C2>B2,D2>C2),1,0)
extend this down the column
use data filter or a sort on E column and select the area to print.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top