By Allen Wyatt for Excel.Tips.Net
David asked how he could return a date associated with the maximum value in a particular column. In David’s application, he had two columns containing dates and weights associated with those dates. He could figure out how to determine the maximum weight, but not how to pull the date on which that weight occurred.
In this instance, let’s assume that the dates are in column A and the weights are in column B, rows 2 through 45. The following is the method of determining the maximum weight in column B:
=MAX(B2:B45)
You are not limited to using the MAX function; you can also use the LARGE function, which returns the largest specified value in a range. If you want the largest value, you use the function in this way:
=LARGE(B1:B45,1)
Article Continued Here
This post is excerpted with permission from Excel.Tips.Net