• 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.

Alternative to MINIFS function

Hi all,

Can someone help me to crack the formula? Please find attached the file, wherein I have calculated the minimum date using MINIFS function. I need an alternative to MINIFS. Thanks a lot.
 

Attachments

  • MINIFS.xlsx
    9.6 KB · Views: 15
Why do you need an alternative? From your formula (using names rather than direct references)
= MINIFS( date, booleanArray, 1, charArray, "A"),
I derived an alternative
= MIN( FILTER( date, (charArray="A") * booleanArray) )
I suspect that this formula is less appropriate to your needs than the original, but there is no way of telling!
 
Back
Top