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 currently have 14 sheets with the following columns: Batch # and Reviewer I use an Index Distinct formula to acquire the unique batch numbers from all 14 sheets and put them into 14 columns on the 'metrics' sheet. I then use another index distinct to get a list of all the unique batch numbers into one 'Unique Batch…
From my research, I understand there isn't a way to keep formulas when exporting from Smartsheet into an Excel document. I have a total of 50 columns with formulas and would think there was a quicker way to grab the formulas. So far, I've appended a "!" which turns the formula into text which does export. However, I'm not…
Hello, I am looking for formula help where I want to return the earliest date in a range for different workstreams groups on a project. The source sheet is formatted as a date field, and the formula used below is returning a 0 no matter what I do. Any suggestions? =MIN(COLLECT({Project Plan - start date}, {Project Plan…