SOLVED

VLookup that combines IF/ISNA statements?

Copper Contributor

I'm trying to do VLookup with an IF and ISNA statement combined so that the VLookup searches the table and multiplies I16 by the appropriate penalty in the penalty schedule box. But if I16 is negative (like in this case), instead of saying #N/A, it would be a dash for zero. I've been able to create separate formulas but cannot figure out how to join them together.

1 Reply
best response confirmed by KScott85 (Copper Contributor)
Solution

@KScott85 

Perhaps like

=IF(I16 < 0, 0, I16*VLOOKUP(...) )
1 best response

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

@KScott85 

Perhaps like

=IF(I16 < 0, 0, I16*VLOOKUP(...) )

View solution in original post