Finding Minimum and Maximum Values of first fifteen days

  • Thread starter Thread starter NIMISH
  • Start date Start date
N

NIMISH

Hi All,

I have data as follows

Column A - Date (daily basis)
Column B - Qty

Column A spans more than 300 rows (dates) now.

I want to find minimum and maximum values of Qty for every date range
(1 to 15) and (16 to last date of month).

What formula should I employ?

Thanks,

Nimish
 
=MAX(IF(DAY(A1:A300)<=15,A1:A300))

which is an array formula, it should be committed with Ctrl-Shift-Enter, not
just Enter.

and

=MAX(IF(DAYA1:A300)>15,A1:A300))

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 

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