Forum Discussion
Pamr0703
Feb 04, 2020Copper Contributor
Need help getting rid of #N/A in my formula; please help
'=IF($AB$4='8B-Saginaw'!$C$9,VLOOKUP('Adjusted Inventory Summary'!F7,'8B-Saginaw'!$A:$F,6,0)). I need to return a zero or blank.
PReagan
Feb 04, 2020Bronze Contributor
Hello Pamr0703,
Return 0 if false:
=IF($AB$4='8B-Saginaw'!$C$9,VLOOKUP('Adjusted Inventory Summary'!F7,'8B-Saginaw'!$A:$F,6,0),0)Return blank if false:
=IF($AB$4='8B-Saginaw'!$C$9,VLOOKUP('Adjusted Inventory Summary'!F7,'8B-Saginaw'!$A:$F,6,0),"")
- Pamr0703Feb 04, 2020Copper ContributorNeither of those worked