Hello Excel specialists,
I have two formulas I would like to merge:
First formula
=IFERROR(VLOOKUP($A8,List2!A:T,9,0),"Value not found")
This formula is checking if cell value of A8 exists in List 2
Second formula
=IF(ISBLANK(VLOOKUP($A8,List2!A:T,9,0)),"Empty",VLOOKUP($A8,List2!A:T,9,0))
This formula is checking if a cell in List 2 is blank. If not, the formula will return the cell value 9 columns to the right of the VLOOKUP cell.
Booth formulas above are working fine when they are separated. I am trying to merge the formulas like the example below but I get the message that "You've entered too many arguments for this function."
=IFERROR(VLOOKUP($A8,List2!A:T,9,0),"Value not found",IF(ISBLANK(VLOOKUP($A8,List2!A:T,9,0)),"Empty",VLOOKUP($A8,List2!A:T,9,0)))
Any kind of help is appreciated.
Kind regards
Ingemar
I have two formulas I would like to merge:
First formula
=IFERROR(VLOOKUP($A8,List2!A:T,9,0),"Value not found")
This formula is checking if cell value of A8 exists in List 2
Second formula
=IF(ISBLANK(VLOOKUP($A8,List2!A:T,9,0)),"Empty",VLOOKUP($A8,List2!A:T,9,0))
This formula is checking if a cell in List 2 is blank. If not, the formula will return the cell value 9 columns to the right of the VLOOKUP cell.
Booth formulas above are working fine when they are separated. I am trying to merge the formulas like the example below but I get the message that "You've entered too many arguments for this function."
=IFERROR(VLOOKUP($A8,List2!A:T,9,0),"Value not found",IF(ISBLANK(VLOOKUP($A8,List2!A:T,9,0)),"Empty",VLOOKUP($A8,List2!A:T,9,0)))
Any kind of help is appreciated.
Kind regards
Ingemar