Hi mymachix
If I understand you correctly, it should simply be a case of placing the text 'Unknown' between the "" at the end of the formula in each column so that it reads like this:
Column B:
=IF(NOT(ISNA(HLOOKUP("FXS",SheetA!7:7,1,FALSE))),HLOOKUP("FXS",SheetA!7:7,1,FALSE),IF(NOT(ISNA(HLOOKUP("FXO",SheetA!7:7,1,FALSE))),HLOOKUP("FXO",SheetA!7:7,1,FALSE),"Unknown"))
Column C:
=IF(NOT(ISNA(HLOOKUP("Registered",SheetA!2:2,1,FALSE))),HLOOKUP("Registered",SheetA!2:2,1,FALSE),IF(NOT(ISNA(HLOOKUP("Unregistered",SheetA!2:2,1,FALSE))),HLOOKUP("Unregistered",SheetA!2:2,1,FALSE),"Unknown"))
The above will work as before, except where it doesn't find FXS or FSO, it will place 'Unknown' in Column C. Similarly, if it doesn't find 'Registered' or 'Unregistered', it will place 'Unknown' in column D.
Is this what you mean?
Regards
Stephen.
Bookmarks