Logical_test on Dates to get date_wise MIN and MAX values

rajahamza9780

New Member
Joined
Nov 1, 2012
Messages
1
NEED HELP!!!

I want to find the MIN and MAX from column 'values' with respect to dates.

Data is in below format (each date has corresponding 1440 minutes and each minute has a specific value):
Dates (several months; daily_basis) | Time (minute by minute) | Values (data)

Required Result format:
Date-1 (e.g. 02-Apr-16) | MIN_value | MAX_value
Date-2 (e.g. 03-Apr-16) | MIN_value | MAX_value
Date-3 (e.g. 03-Apr-16) | MIN_value | MAX_value
.
.
.
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
That doesn't reveal the lay-out of your data. But something like below should work:

Control+shift+enter, not just enter...

=MIN(IF(DataRange=date,TimeRange))

=MAX(IF(DataRange=date,TimeRange))

If you are on a 2016 system, try the MINIFS and MAXIFS functions which do not require control+shift+enter.
 
Upvote 0
They are available if you are on Office 365, Jason. They have been added very recently.
 
Upvote 0

Forum statistics

Threads
1,214,430
Messages
6,119,443
Members
448,898
Latest member
drewmorgan128

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