• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

I am bad at this, please help - MAXIF function?

hver1075

New Member
view
upload_2015-12-29_15-57-19.png dead items weeded pic.png Hi,

Trying to get the "Last Completed" formulas to generate correctly in column I. I want the formula to find the most recent date (from column E) and automatically update. So for cell I3, I want it to put the most recent date (from Column E) when it's corresponding cell from column A says "Adult Fiction Books." For J3, I want it to put the most recent date (from column E) when it's corresponding cell from column A says "Adult Mystery Books" etc.

I'm pretty unfamiliar with multiple criteria formulas and came up with:
=MAX(IF($A$3:$A$100=I2,$E$3:$E$1000=DATEVALUE(mm/dd/yyyy))) for cell I3. But, unsurprisingly, it doesn't work.

Thanks for any help!
 
Hi @hver1075:

Try (CSE : Ctrl + Shift + Enter)
=MAX(IF($A$3:$A$100=I2,$E$3:$E$100))

or (No CSE)
=MAX(INDEX(($A$3:$A$100=I2)*$E$3:$E$100,))

And later, put the format (if necessary) of the cells into dates.

Blessings!
 
Back
Top