Okay...I\'m making a project that uploads 6 customer names and their sales from two arrays.
The names and sales are uploaded to a list box by using a command button.
Next I calculate average sales.
Then I\'m suppose to get the minimum sales amount in a text box with its\' own command button.
Then the same for a maximum.
Here\'s what I got...
Option Explicit
Dim strName(6) As String, curSale(6) As Currency
Dim I As Integer, curSum As Currency
Dim curAvg As Currency
Dim intCount As Integer
Private Sub cmdAvg_Click()
curAvg = curSum / intCount
txtAvg.Text = Format(curAvg, "Currency")
End Sub
Private Sub cmdExit_Click()
End
End Sub
Private Sub cmdHighest_Click()
Dim curHighest As Currency
curHighest = curSale(0)
For I = 1 To 6
If curSale(I) > curHighest Then
curHighest = curSale(I)
End If
Next
txtHighest.Text = curHighest
End Sub
Private Sub cmdInput_Click()
Dim curHighest As Currency
Open "a:\\CustSales.txt" For Input As #1
Do Until EOF(1)
Input #1, strName(I), curSale(I)
lstCust.AddItem (strName(I)) & "/" & Format(curSale(I), "Currency")
curSum = curSum + curSale(I)
intCount = intCount + 1
Loop
End Sub
My problem is finding the max amount. I\'m using a
For Next loop and an If & Then statement to determine the highest sales amount.
All it does is display the last item in the array!
Please help:(
Oh, and if you could help me out on finding the min sales, that would be cool too!