S
Schrades
I have created a function in a seperate module file that works fine if
I increment through it. The total variable is incremented accuratley,
but I can't get it to return the value. I have a feeling it is
something simple, but am stumped.
The function starts in cell A12 looks for a matching string than reads
the value in the cell 5 columns over. I keep a running total and want
the total displayed in the cell where I call the function from.
I was also battling circular reference problems, but I think I fixed
those.
Here is the code.
Public Function RunTotalKia1()
Dim Total
Range("A12").Select
Do Until ActiveCell.Value = ""
If ActiveCell.Value = "Kia 1" Then
Total = Total + ActiveCell.Offset(0, 5).Value
End If
ActiveCell.Offset(1, 0).Activate
Loop
RunTotalKia1 = Total
End Function
Anyone have any ideas? Thanks in advance.
-Adam
I increment through it. The total variable is incremented accuratley,
but I can't get it to return the value. I have a feeling it is
something simple, but am stumped.
The function starts in cell A12 looks for a matching string than reads
the value in the cell 5 columns over. I keep a running total and want
the total displayed in the cell where I call the function from.
I was also battling circular reference problems, but I think I fixed
those.
Here is the code.
Public Function RunTotalKia1()
Dim Total
Range("A12").Select
Do Until ActiveCell.Value = ""
If ActiveCell.Value = "Kia 1" Then
Total = Total + ActiveCell.Offset(0, 5).Value
End If
ActiveCell.Offset(1, 0).Activate
Loop
RunTotalKia1 = Total
End Function
Anyone have any ideas? Thanks in advance.
-Adam