Forum Discussion
Rafa_Alcantara1
May 09, 2020Copper Contributor
Formato correcto para BuscarV
Buenos dias, tengo una duda en la función BuscarV. Como puedo evitar que me devuelva #N/A la función BuscarV cuando tengo columnas con formato texto y número y solo me da resultados en los cruces d...
Charla74
May 10, 2020Iron Contributor
Hi,
I'm not familiar with FindV, however, most formulae can be wrapped in an IFERROR function, in order not to show resulting errors (or indeed to display an alternative to the error). See below example using the FIND function:
=IFERROR(FIND("TEXT",A1,1),"")
..."" displays a blank cell where the formula results in error
=IFERROR(FIND("TEXT",A1,1),"Check!")
...the text 'Check!' is displayed where the formula results in error