Forum Discussion
dlc54
Jul 14, 2021Copper Contributor
Help with formulas
Looking for help to analysis data for each # on sheet 1 check column c if blank then in column d enter 'show' if 'cancel' look up sheet 2 if match for # then enter column b if no match then ...
- Jul 14, 2021
In D2:
=IF(C2="","show",IF(C2="cancel",IFERROR(VLOOKUP(A2,Sheet2!$A$2:$B$1000,2,FALSE),"no data"),""))
Fill down.
HansVogelaar
Jul 14, 2021MVP
In D2:
=IF(C2="","show",IF(C2="cancel",IFERROR(VLOOKUP(A2,Sheet2!$A$2:$B$1000,2,FALSE),"no data"),""))
Fill down.
- dlc54Jul 20, 2021Copper Contributor
Works perfectly. Thank you 🙂