rdoulaghsingh
Board Regular
- Joined
- Feb 14, 2021
- Messages
- 105
- Office Version
- 365
- Platform
- Windows
Good evening. I'm using the formula below which works great, but when I drag it down to cells with no reference I get #N/A error.
I've modified the code to the following below using IFERROR, but I keep receiving the error "you've entered too many arguments for this function".
What am I doing wrong?
VBA Code:
=IF(VLOOKUP(A1295,'SP 800-53B SecBaseline R5'!$A:$G,{3,4,5,6,7},0)=0,"",VLOOKUP(A1295,'SP 800-53B SecBaseline R5'!$A:$G,{3,4,5,6,7},0))
I've modified the code to the following below using IFERROR, but I keep receiving the error "you've entered too many arguments for this function".
Code:
=IF(IFERROR(VLOOKUP(A1297,'SP 800-53B SecBaseline R5'!$A:$G,{3,4,5,6,7},0)=0,"",VLOOKUP(A1297,'SP 800-53B SecBaseline R5'!$A:$G,{3,4,5,6,7},0)),"")
What am I doing wrong?
Last edited: