Forum Discussion
Rodney2485
Jun 11, 2024Brass Contributor
Trouble removing CALC Error
This is the Formula i'm using, however when the formula doesnt return a result I get the #Calc error. =LET( filtered, FILTER( F2:F9000, ISNUMBER(XMATCH(G2:G9000, H2:H3, )) ), UNIQUE(filtered)) ...
djclements
Jun 11, 2024Silver Contributor
Rodney2485 Here's a few options for handling the #CALC error in this scenario:
=LET(
filtered, FILTER(F2:F9000, ISNUMBER(XMATCH(G2:G9000, H2:H3))),
IF(ISNUMBER(ROWS(filtered)), UNIQUE(filtered), "No Records")
)
=LET(
incl, ISNUMBER(XMATCH(G2:G9000, H2:H3)),
IF(OR(incl), UNIQUE(FILTER(F2:F9000, incl)), "No Records")
)
=IFERROR(UNIQUE(FILTER(F2:F9000, ISNUMBER(XMATCH(G2:G9000, H2:H3)))), "No Records")
See attached, if needed...