Forum Discussion
johnnycasali365
Jan 11, 2022Copper Contributor
What's wrong with this formula?
Hi, this formula returns #value error and I can't figure out why.
Thnak you
=IF(ISNUMBER(SEARCH("ES21",C6)),FILTER(Table13[ESFERIC],Table13[[Descripcion ]]=GASTRONOMIA!C18,"")),IF(ISNUMBER(SEARCH("MC21",C6)),FILTER(Table13[MASIA],Table13[[Descripcion ]]=GASTRONOMIA!C18,""))
Perhaps you mean something like
=IF( ISNUMBER(SEARCH("ES21",C6) ), FILTER( Table13[ESFERIC], Table13[[Descripcion ]]=GASTRONOMIA!C18) , IF( ISNUMBER(SEARCH("MC21",C6) ), FILTER(Table13[MASIA],Table13[[Descripcion ]]=GASTRONOMIA!C18), "") )
3 Replies
- SergeiBaklanDiamond Contributor
Perhaps you mean something like
=IF( ISNUMBER(SEARCH("ES21",C6) ), FILTER( Table13[ESFERIC], Table13[[Descripcion ]]=GASTRONOMIA!C18) , IF( ISNUMBER(SEARCH("MC21",C6) ), FILTER(Table13[MASIA],Table13[[Descripcion ]]=GASTRONOMIA!C18), "") )- johnnycasali365Copper ContributorI see the error now. Thank you very much Sergei.
- SergeiBaklanDiamond Contributor
johnnycasali365 , you are welcome