MAXIFS alternative

Steven101

Board Regular
Joined
Oct 27, 2014
Messages
62
Hi, I have the following code which works on Office 365 using MAXIFS

Code:
MAXIFS(Table1[Date],Table1[Name],D13,Table1[7 Dwarf],H13,Table1[Type],"<>"&"*Yes*"))

Essentially it provides the maximum date that matched 3 criteria (name=D13, 7 dwarf = H13, type not contain Yes)

Problem is I'm trying to replicate for users not in O365

I have tried the array
Code:
{=MAX(IF(Table1[Name]=D12,IF(Table1[7 Dwarf]=H12,IF(Table1[Type]<>"*Yes*",Table1[Date]))))}
but no joy.

any help would be appreciated

Thanks Steven
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Try like this:

=MAX(IF(Table1[Name]=D13,IF(Table1[7 Dwarf]=H13,IF(NOT(ISNUMBER(SEARCH("yes",Table1[Type]))),Table1[Date]))))
 
Upvote 0

Forum statistics

Threads
1,214,926
Messages
6,122,306
Members
449,079
Latest member
juggernaut24

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