0
I've prepared a table in which I need to have a vlookup function to manage multiple criteria based on data in corresponding cells & sheets.
I need help to implement the following rules:
SHEET 1: Sheet 1 • I need data in column N to auto fill as per below criteria:
a. Completed – when date in entered in column L
b. Pending – If supplier payment term is “CREDIT” and date in column M is blank
c. Advance – if column L is blank and supplier payment term is “Advance”
SHEET 2: Sheet 2 • I need data in the following columns to reflect:
- Column H:
a. Reflect “completed” if column I is filled with a date
b. Advance/Credit if column I is blank
- Column K:
a. Reflect Pending/Completed depending upon date entered in column J
SHEET 3: Payment Terms Payment Terms
What attempts have you made trying to build your
IF()
statements withVLOOKUP()
results? – Chris Rogers – 2019-02-10T10:24:34.140@ Chris Rogers: I have the following formulas applied: 1. =IF(L2<>"","Completed","Advance") - in column N of sheet 1, 2. =IF(I2<=TODAY(),"Completed",VLOOKUP(C2,'PAYMENT TERMS'!A:B,2,FALSE)) - in column I of sheet 2, 3. =IF(J2<>"","Completed","Pending") - in column K of sheet 2 – Rachan Dsouza – 2019-02-10T10:31:02.687