jski
New Member
I'm attempting to add numbers in a column (H) based on a date (column I) and then take that result and look it up in a table (RateTable) which will then multiply that result by a percentage. Here's the formula:
=((VLOOKUP(SUMIF($H:$H,"3/1/2015",$I:$I),RateTable,3,TRUE)*(SUMIF($H:$H,"3/1/2015",$I:$I))))
I:I = 100,000
H:H = 3/1/2015
RateTable = 10%
Result = 10,000
The reason I'm using TRUE is that the add value may fall between two variables in one tier of the RateTable. Reformatting the date yields nothing. I'm really at a loss as to why this isn't working as the logic seems correct. My result returns zero with the formula above. I would appreciate a second set of eyes to help determine what the issue is. Many thanks in advance.
jski
=((VLOOKUP(SUMIF($H:$H,"3/1/2015",$I:$I),RateTable,3,TRUE)*(SUMIF($H:$H,"3/1/2015",$I:$I))))
I:I = 100,000
H:H = 3/1/2015
RateTable = 10%
Result = 10,000
The reason I'm using TRUE is that the add value may fall between two variables in one tier of the RateTable. Reformatting the date yields nothing. I'm really at a loss as to why this isn't working as the logic seems correct. My result returns zero with the formula above. I would appreciate a second set of eyes to help determine what the issue is. Many thanks in advance.
jski