Hi,
I am using a worksheet function to get the minimum value in a column as below. There may be 1-n rows it is looking at.
Is it possible to find which row that the minimum is found, as I would like to check the value in Column C of the same row?
I am using a worksheet function to get the minimum value in a column as below. There may be 1-n rows it is looking at.
Is it possible to find which row that the minimum is found, as I would like to check the value in Column C of the same row?
Code:
Worksheets("Sheet1").Range("D6").Value = Application.WorksheetFunction.Min(Columns("E"))