Sign in to join the conversation:
I have Table with values as below and now I would like to get max value. How Could i can achieve the Results Required ?.
Col1 Col2
A 2580 A 2380B 1860B 420C 860D 2760D 2710C 2750
Max Value -- A = 2580
B = 1860
C = 2750
D = 2760
This formula:
=MAX(COLLECT([Col2]:[Col2], [Col1]:[Col1], "A"))
looks at the complete columns and will get you the maximum for "A".
I prefer to do something like this:
=MAX(COLLECT([Col2]:[Col2], [Col1]:[Col1], [Col1]@row))
where the formula is anywhere NOT in [Col2] and the [Col1] cell on the same row is "A".
Good luck.
Craig
I recently created a new archive file and want to update the formula so that it will also search the new sheet. Here is the current formula I have. it works on current sheets but not the new archive. Any help or suggestions would be appreciated. =UPPER(IFERROR(IF(LEFT([Excel PO Approval Number REQUIRED]@row , 2) = "PO",…
I would like a formula that counts the # of entries that are marked for the event "Non-Public Schools Leadership Conference" that contain an admission item marked "Exhibitor" whose payment method is not marked "Free". What am I doing wrong in the formula below? =COUNTIFS([Event Title]:[Event Title], "Non-Public Schools…
Hi i'm looking to a formula using INDEX and MATCH to refer data from two sheets. i have 2 source sheets sheet: "project" and "Archive projet". in each, there are same columns for projet number and contact name. i would like to refer the contact name in a third sheet with a formula that can find the contact name based on…