Feb 09 2023 11:36 AM
I'm trying to combine the following IF statements into 1:
=IF(AND(B18<>$D$2, L18>=0), VLOOKUP(B18,$D$2:$E$5,2,FALSE),VLOOKUP(B18,$D$2:$F$5,3,FALSE))
&
=IF(AND(B20=$D$2, L20>$F$2), VLOOKUP(B20,$D$2:$E$5,2,FALSE),VLOOKUP(B20,$D$2:$F$5,3,FALSE))
The 1st statement reads: FOR POB <> SUB AND DISCOUNT IS >=0, RETURN 33% (VLOOKUP) IF NOT RETURN 0% (VLOOKUP)
The 2nd statement reads: IF POB = SUB AND DISCOUNT IS > -1%, RETURN 33 % (VLOOKUP), IF NOT RETURN -1% (VLOOKUP)
Feb 09 2023 11:57 AM
Feb 09 2023 12:05 PM
Feb 09 2023 12:10 PM
Feb 09 2023 12:31 PM
Feb 09 2023 01:14 PM
SolutionFeb 09 2023 01:28 PM