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
Is there a way to move attachments from one sheet to another based on key data? IE: We have a sheet that includes a lot of the 'pre-completed' process, and final product PDFs are uploaded as they're created. We then have a sheet where we track information related to the final products. We don't want to use Move/Copy as it…
I have a list of properties that I'm keeping track of. I have each building divided into suites (children) and each suite has a cell with its square footage. The total square footage rolls up to the building name. I also have a drop down column that shows if the suite is occupied or vacant. I need a to calculate the…
Hi! I'm fairly new to SmartSheets but have been trying a number of things that havent yet worked. I want to be able to show for each parent row, the number of child rows completed as a %. So for the parent row Process Overview there are 7 tasks and 6 tasks are complete so I want it to show as 90%. Can anyone help me?