=IF(V3="CAC",VLOOKUP(F3,'Service List'!B3:G436,6,FALSE),VLOOKUP(F3,'Service List'!B437:G1185,6,FALSE))
these are the formulas i'm working with.
Can someone help?
=IF(V3="CAC",VLOOKUP(F3,'Service List'!B3:G436,6,FALSE),VLOOKUP(F3,'Service List'!B437:G1185,6,FALSE))
these are the formulas i'm working with.
Can someone help?
=iferror((formula),"")
Probably nest it with both of them as VLookup will always turn up N/A if true.
=IF(V3="CAC",IFERROR(VLOOKUP(F3,'Service List'!B3:G436,6,FALSE),""),IFERROR(VLOOKUP(F3,'Service List'!B437:G1185,6,FALSE),""))
OR
=IFERROR(IF(V3="CAC",VLOOKUP(F3,'Service List'!B3:G436,6,FALSE),VLOOKUP(F3,'Service List'!B437:G1185,6,FALSE)),"") - Cleaner?
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks