UDF that takes a value, finds it within an array and then multiplies it by the last column

txwinder

New Member
Joined
Jun 7, 2019
Messages
5
So I am working on what seemed to be a simple project. I have the following matrix:

$0 $40,000,000 0.200%
$40,000,001 $80,000,000 0.175%
$80,000,001+ 0.125%

If I have a value of $50,000,000 then the function must perform the following calculation:

($40,000,000 * .2%) + (($50,000,000 - $40,000,001) * .175%)

The UDF must be dynamic so that it can work on any number of rows, and the columns will always be (LBound, UBound, %Rate), so no more than 3 columns.

I was able to do this with INDEX and the SUMPRODUCT function but if I add rows then I would have to change the formula and since this is going to someone who is not excel savvy that is not a workable solution.
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Re: Need a UDF that takes a value, finds it within an array and then multiplies it by the last column

What is in the 2nd column of the last row? Empty?
 
Upvote 0
Re: Need a UDF that takes a value, finds it within an array and then multiplies it by the last column

What is in the 2nd column of the last row? Empty?


Steve the Fish,
Thx for the quick response. The 2nd column in the last row will always be blank and represent the UBound of that row. It is an iterative calc, so if the value lands in the last row then the calc needs to look like this:

Ex. #1
Value $50,000,000
($40,000,000 * .2%) + (($50,000,000 - $40,000,001) * .175%)

Ex. #2
Value $90,000,000
($40,000,000 * .2%) + (($80,000,000 - $40,000,001) * .175%) + (($90,000,000 - $80,000,001)*.125%)

 
Upvote 0
Re: Need a UDF that takes a value, finds it within an array and then multiplies it by the last column

I meant to say here are examples as the value hits the different rows. But yes the 2nd column of the last row will always be empty...
 
Upvote 0
Re: Need a UDF that takes a value, finds it within an array and then multiplies it by the last column

Marcelo B.,
The formula works almost but not quite there. The main problem is that the user of this is excel light (I'm realizing I am rusty myself) and he wants to go in and punch in a value and get a result, even if the schedule/matrix size changes, so that's why I need a dynamic function, which takes an array as an argument. Using your suggestion I get $20,000 when I enter a value of $50,000,000. The return should be $97,500. We tried this a number of ways using the native functions and there was always a situation whereby the formula needed to be re-written, when either the schedule/matrix changed or the value changed.

I found the below code in another thread. The only thing I do not like is that the schedule values are hard coded into the function. I'd assume the argument would be an array as a range...

Public Function marg_tax(salary As Variant) As Variant
'Computes the total due on taxable income using the US 2007 tax schedules found in Wikipedia
'For single filers.

Dim bracket As Double, tax As Double

If Not IsNumeric(salary) Or salary <= 0 Then 'No income or invalid income
marg_tax = Format(0, "Currency")
Exit Function
End If

tax = WorksheetFunction.Min(salary, 8350) * 0.1 'First $8350 taxed at 10%

If salary > 8350 Then '$8351 to $33590 taxed at 15%
bracket = (WorksheetFunction.Min(salary, 33590) - 8350) * 0.15
tax = tax + bracket
End If

If salary > 33590 Then '$33591 to $82250 taxed at 20%
bracket = (WorksheetFunction.Min(salary, 82250) - 33590) * 0.2
tax = tax + bracket
End If

If salary > 82251 Then '$82,251 – $171,550 taxed at 28%
bracket = (WorksheetFunction.Min(salary, 171550) - 82251) * 0.28
tax = tax + bracket
End If

If salary > 171550 Then '$171,551 – $372,950 taxed at 33%
bracket = (WorksheetFunction.Min(salary, 372950) - 171551) * 0.33
tax = tax + bracket
End If

If salary > 372950 Then '$372,951+ taxed at 35%
bracket = (salary - 372950) * 0.35
tax = tax + bracket
End If

marg_tax = Format(tax, "Currency")

End Function
 
Upvote 0
Re: Need a UDF that takes a value, finds it within an array and then multiplies it by the last column

This solution using formulas worked for me - observe the 1 in A2


A
B
C
D
E
F
G
1
Lower​
Higher​
%
Marginal​
Value​
Result
2
1​
40000000​
0,200%
0,200%​
50000000​
97500,00​
3
40000001​
80000000​
0,175%
-0,025%​
4
80000001​
0,125%​
-0,050%​

<tbody>
</tbody>


Formula in D2 copied down
=C2-N(C1)

Value of interest in F2

Formula in G2
=SUMPRODUCT(--(F2>=A2:A4),F2+1-A2:A4,D2:D4)

Hope this helps

M.
 
Upvote 0
Re: Need a UDF that takes a value, finds it within an array and then multiplies it by the last column

If i have my calcs right this works:

Code:
Function margtax(salary As Range, salary_table As Range) As Double

arr = salary_table

For i = LBound(arr) To UBound(arr)
    If i = UBound(arr) Then
        myVal = myVal + Application.Max(0, Application.Min(salary - arr(i, 1), salary - arr(i, 1))) * arr(i, 2)
    Else
        myVal = myVal + Application.Max(0, Application.Min(salary - arr(i, 1), arr(i + 1, 1) - arr(i, 1))) * arr(i, 2)
    End If
Next

margtax = myVal

End Function

where the function just requires this table:

00.200%
400000000.175%
800000000.125%

<tbody>
</tbody>
 
Last edited:
Upvote 0
Re: Need a UDF that takes a value, finds it within an array and then multiplies it by the last column

Steve the Fish & Marcelo B.
You two are lifesavers. You do not understand how hard I was banging my head against the wall trying to get this done. I tried something close toe Marcelo's solution but it wasn't dynamic enough and I didn't think of manipulating the schedule/matrix to make my life easier. That's what happens when you haven't coded in 10yrs and try to pull an all nighter!

Much appreciated fellas!
 
Upvote 0
Re: Need a UDF that takes a value, finds it within an array and then multiplies it by the last column

I'm glad we could help :)

M.
 
Upvote 0

Forum statistics

Threads
1,214,619
Messages
6,120,550
Members
448,970
Latest member
kennimack

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