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
Hi all. I'm trying to do something that I'm not sure if it's possible or not. We have a sheet that we are importing where the first column lists areas within our factory. Each column after that has a column name of a date. So 12/15/2025, 12/16/2025, 12/17/2025, etc. In each of the date columns is a target production…
Hello, I have a checkbox column that I would like to be checked when comparing 2 columns. I would like it to be checked if the 2 columns are not equal or if one of the 2 columns has an error. It's important to note that both columns are numbers. My original formula was: =IF([COLUMN A]@row <> [COLUMN B]@row , 1, 0) However,…
Hello! I have what is probably a simple question my brain is just not comprehending properly. I need to SUMIFS from a sheet that matches some specific criteria but one of the fields I am using against needs to calculate a total if one dropdown field matches ANY ONE of these 3 items that is in it to be chosen… Capitol…