Forum Discussion
2Dogs6
Sep 21, 2023Copper Contributor
Combine IF(Vlookup and IFERROR(Vlookup
Is it possible to combine the two vlookup formulas listed below? I have tried so many different ways with no success. I am using Microsoft Excel 2016. Some of the data will have costs more or l...
- Sep 21, 2023
=IFERROR(IF(VLOOKUP($A2,Sheet2!$A:$C,2,0)=0,"Cancelled","Valid"),"No Data")
Does this return the intended results?
OliverScheurich
Sep 21, 2023Gold Contributor
=IFERROR(IF(VLOOKUP($A2,Sheet2!$A:$C,2,0)=0,"Cancelled","Valid"),"No Data")
Does this return the intended results?
- 2Dogs6Sep 21, 2023Copper ContributorI knew it was an easy answer just couldn't get anything to show up in a google search. This worked perfectly. Thank you.