Maximum hourly temperature of the day

mzalikhan

Board Regular
Joined
May 16, 2011
Messages
62
Hi everybody. I have a 10 year daily meteorology data. Met parameters are recorded hourly. So i have 24 readings of temperature a day. What i want is to extract

1- Maximum Daily temperature

2- Temperature at 7:00 AM

How can i do that?

Peace.
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Hi everybody. I have a 10 year daily meteorology data. Met parameters are recorded hourly. So i have 24 readings of temperature a day. What i want is to extract

1- Maximum Daily temperature

2- Temperature at 7:00 AM

How can i do that?

Peace.
Try this...

Times in column A and temps in column B.

D2 = 7:00 am

Array entered**:

=MAX(IF(A2:A100=D2,B2:B100))

** array formulas need to be entered using the key
combination of CTRL,SHIFT,ENTER (not just ENTER).
Hold down both the CTRL key and the SHIFT key
then hit ENTER.

I imagine you probably have 10's of 1000's of records. This method is more efficient...

Book1
ABCD
1TimeTemp_Time
27:00 AM16_7:00 AM
311:00 AM41__
48:00 AM71_43
510:00 AM99__
67:00 AM35__
77:00 AM43__
84:00 PM62__
97:00 PM67__
106:00 AM74__
Sheet1

Formula entered in D4:

=DMAX(A1:B10,B1,D1:D2)
 
Last edited:
Upvote 0
Thanks T.Valko
Actually i got the 7:00 AM data by simply using filter.

However mean while i just came to know that some date/time data is missing.

So now before going to extract daily maximum, i think i have to fill up the missing date/time rows???
 
Upvote 0

Forum statistics

Threads
1,224,534
Messages
6,179,390
Members
452,909
Latest member
VickiS

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