I'm creating a program in excel that gets the highest and lowest number. I get the highest number but the lowest number stays always at 0 ..Please help me what I'm doing wrong.. This is the screenshot of the numbers im using: http://i.stack.imgur.com/zZci6.png
This is the Code i created:
Sub Code()
Dim i As Integer
Dim max, min As Long
For i = 1 To 10
If Cells(i, 1).Value < min Then
min = Cells(i, 1).Value
End If
If Cells(i, 1).Value > max Then
max = Cells(i, 1).Value
End If
Next i
Cells(3, 4).Value = min
Cells(4, 4).Value = max
End Sub