Intersection, FileNameJoin, StringDrop, Run
| VBA | Mathematica | Excel | |
| t | Min[] | MIN() |
Statistics
Function MaxAddress(The_Range)
' Sets variable equal to maximum value in the input range.
MaxNum = Application.Max(The_Range)
' Loop to check each cell in the input range to see if equals the
' MaxNum variable.
For Each cell In The_Range
If cell = MaxNum Then
' If the cell value equals the MaxNum variable it
' returns the address to the function and exits the loop.
MaxAddress = cell.Address
Exit For
End If
Next cell
End Function
Testing