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 Am using the below formular in my Health Indicator but even though my project is on track My overall project indicator is showing Red. What have I done wrong any assistance please :-) =IF(AND([End Date]@row < TODAY(), [% Complete]@row < 1), "Red", IF(AND([Start Date]@row <= TODAY(), [End Date]@row >= TODAY(1), (TODAY(1)…
Hey Smartsheet Guru’s I have 2 sheets – 1 is capacity and the other is ooto – Sheet 1 – capacity has names and emails and %the first 3 columns and subsequent columns has week to week start date(as text), end date as text and number of days excluding holidays In the OOTO file – it is a simple if someone requests timeoff it…
I have a sheet and I want the checkbox option to appear as checked if the cell in the name column of the same row is one of 133 options- is this possible in a single formula?