I appreciate you asked for a non VBA solution but I will offer one as it is quite trivial to implement and understand. I'll leave it up to you whether you want to use it or not.
Suppose your data is organised as follows in Sheet1 of your workbook:
A B C
1 Temp Max Min
2 25 32 14
The following code will update Max and Min whenever Temp changes:
Private Sub Worksheet_Change(ByVal Target As Range)
Dim temp As Range, max As Range, min As Range
Set temp = Range("A2") //Change for your specific set-up
Set max = Range("B2") //Change for your specific set-up
Set min = Range("C2") //Change for your specific set-up
If Not Intersect(temp, Target) Is Nothing Then
max = WorksheetFunction.max(Target, max)
min = WorksheetFunction.min(Target, min)
End If
End Sub
For clarity, to add this code from worksheet:
- Open VB Editor (ALT + F11)
- In Project Explorer double click Sheet1
- Select
Worksheet in left hand drop down menu and then Change in right hand drop down