Select max value per day

JennyReed

New Member
Joined
Feb 8, 2011
Messages
23
I have water level data with two - four records per day. I would like to extract the highest level per day. How do I get excel to do this ?

For example: raw data looks as follows
01/09/2009 08:5076.8
01/09/2009 14:4754.3
01/09/2009 20:5982.7
02/09/2009 03:1448.4
02/09/2009 09:2981.7
02/09/2009 15:2750.4
02/09/2009 21:3887.6
03/09/2009 03:5144.5
03/09/2009 10:0285.7
03/09/2009 16:0346.5
03/09/2009 22:1291.5
04/09/2009 04:2441.6
04/09/2009 10:3289.6
04/09/2009 16:3443.5
04/09/2009 22:4394.5

<tbody>
</tbody>

Max per day table would look as follows:
01/09/2009 20:5982.7
02/09/2009 21:3887.6
03/09/2009 22:1291.5
04/09/2009 22:4394.5

<tbody>
</tbody>

<tbody>
</tbody>

<tbody>
</tbody>

<tbody>
</tbody>
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Formula would be along the lines of:

=MAX(IF(INT(A1:A15)=INT(A1),B1:B15))

CNTL-SHIFT-ENTER to enter.
 
Upvote 0

Forum statistics

Threads
1,214,657
Messages
6,120,769
Members
448,991
Latest member
Hanakoro

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top