UDF with conditions

TG2812

Board Regular
Joined
Apr 15, 2015
Messages
180
Hi, I built the following UDF and I need to do the following adjustments;

#adjustment 1: When my function returns a result greater to 7, the formula needs to return ">7" in the worksheet. I could handle this with a basic IF in the worksheet but I would need to go through my 100000+ rows...Is this possible to adjust the UDF without using IF statement either in the worksheet nor in the UDF?

#adjustment 2: When my array ends, the last result the formula returns in the worksheet is #VALUE . How can I handle this and by default returning 0 ?

Thank you in advance for all your answers !

Code:
Function MyFunction(Par1 As Double, myArray)
 
myFunction = 0
Dim i As Variant
 
For Each i In myArray
    If Par1 = 0 Then Exit Function
    If Par1 < i Then
        MyFunction = MyFunction + Par1 / i
        Exit Function
    Else
        Par1 = Par1 - i
        MyFunction = MyFunction + 1
    End If
Next i
 
End Function
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Perhaps something like this (not tested)

Code:
Function MyFunction(Par1 As Double, myArray As Variant) As Variant
    Dim MyScratchVar As Double
    Dim ResultFound As Boolean

    ResultFound = False
    MyScratchVar = 0
    Dim i As Variant

    For Each i In myArray
        If Par1 = 0 Then Exit For
        If Par1 < i Then
            MyScratchVar = MyScratchVar + Par1 / i
            ResultFound = True
            Exit For
        Else
            Par1 = Par1 - i
            MyScratchVar = MyScratchVar + 1
        End If
    Next i

    If ResultFound Then
        If MyScratchVar > 7 Then
            MyFunction = ">7"
        Else
            MyFunction = MyScratchVar
        End If
    Else
        MyFunction = 0
    End If
End Function
 
Upvote 0
It unfortunately does not work.

For #2 , the error #VALUE is returned when Par 1 is negative and the first element of the array is 0.

Any other idea?

Thank you in advance for your help.
 
Upvote 0
It unfortunately does not work.
the error #VALUE is returned when Par 1 is negative and the first element of the array is 0.


The condition (Par1 < i AND i = 0) will always produce a divide-by-zero error. You have to decide what you want to happen when that condition occurs.
 
Upvote 0
In such case, I would like the function to return 0 but I'm not able to make it happen in the code. Any idea?
 
Upvote 0
Code:
Function MyFunction(ByVal Par1 As Double, myArray As Variant) As Variant
    Dim MyScratchVar As Double
    Dim ResultFound As Boolean

    ResultFound = False
    MyScratchVar = 0
    Dim i As Variant

    For Each i In myArray
        If Par1 < i And i = 0 Then Exit For
        If Par1 = 0 Then Exit For
        If Par1 < i Then
            MyScratchVar = MyScratchVar + Par1 / i
            ResultFound = True
            Exit For
        Else
            Par1 = Par1 - i
            MyScratchVar = MyScratchVar + 1
        End If
    Next i

    If ResultFound Then
        If MyScratchVar > 7 Then
            MyFunction = ">7"
        Else
            MyFunction = MyScratchVar
        End If
    Else
        MyFunction = 0
    End If
End Function
 
Upvote 0
Thank you rlv01. I came up with a table to illustrate what I discussed above.

Jan-19Feb-19Mar-19Apr-19May-19Jun-19Jul-19Aug-19Sep-19
My sales forecast000030313
My inventory projection-3-2-5031643
My invenrory cover #VALUE!#VALUE!#VALUE!0.002.000.338.008.008.00

<colgroup><col><col><col span="3"><col span="5"></colgroup><tbody>
</tbody>

"My Inventory cover" corresponds to the row where I input the UDF. Do you obtain the same result with the code pasted above?

Thank you in advance.
 
Upvote 0
The function depends on two inputs Par1 and myArray. You are assuming that I will know how to figure out those inputs from the sales/proj/cover table you posted above. Better not to make assumptions like that, but instead explain how the data relates to the function.
 
Upvote 0
Let me further explain. What I'm trying to do is to understand how long it will take for my inventory (projection) to deplete based on my sales forecast.
Par1 here corresponds to -3, myArray corresponds to the sales forecast from Feb-19 to Sep-19 (0,0,0,3,0,3,1,3).

Based on these inputs, I'm obtaining the figures shown in the row "My Inventory Cover".
 
Upvote 0
For your results row

My invenrory cover #VALUE ! #VALUE ! #VALUE ! 0.00 2.00 0.33 8.00 8.00 8.00​

Can you tell me what the results should be for each column, if you were doing a hand calculation?
 
Upvote 0

Forum statistics

Threads
1,215,429
Messages
6,124,843
Members
449,193
Latest member
MikeVol

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top