Max Question

MrData

Active Member
Joined
May 4, 2003
Messages
324
I have two columns of data. The column B contains the day of the week, whilst column E has a value.

I'm trying to get the Max value for a specific day (Tue) the day can appear any number of times.

Could someone oblige woth a formula?
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
I have two columns of data. The column B contains the day of the week, whilst column E has a value.

I'm trying to get the Max value for a specific day (Tue) the day can appear any number of times.

Could someone oblige woth a formula?

If month and year are of no interest...

And if days in column B are given just as text...

Control+shift+enter, not just enter:

=MAX(IF($B$2:$B$100="Tue",$E$2:$E$100))

If column B contains true dates...

Control+shift+enter, not just enter:

=MAX(IF(WEEKDAY($B$2:$B$100)=3,$E$2:$E$100))
 
Upvote 0

Forum statistics

Threads
1,214,982
Messages
6,122,581
Members
449,089
Latest member
Motoracer88

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