SOLVED

VLookup that then multiplies based on answer?

Copper Contributor

I'm trying to construct a VLookup table that will take the amount in B16 (Taxable Income) and figure out where in the Flat Tax Rate table that amount falls in, then multiply the B16 cell by the correct % Rate. So G16 *should* be $13,330, but I cannot for the life of me figure it out.

2 Replies
best response confirmed by KScott85 (Copper Contributor)
Solution

@KScott85 Try this:

 

 

=B16*LOOKUP(B16,E6:E10,G6:G10)

 

Or, since you tagged you post with Office365, this one should work for you as well.

=B16*XLOOKUP(B16,E6:E10,G6:G10,"",-1)

 

@Riny_van_Eekelen That 100% worked, thank you again!

 

1 best response

Accepted Solutions
best response confirmed by KScott85 (Copper Contributor)
Solution

@KScott85 Try this:

 

 

=B16*LOOKUP(B16,E6:E10,G6:G10)

 

Or, since you tagged you post with Office365, this one should work for you as well.

=B16*XLOOKUP(B16,E6:E10,G6:G10,"",-1)

 

View solution in original post