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(SEAR...
- Jan 11, 2022
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), "") )
johnnycasali365
Jan 11, 2022Copper Contributor
I see the error now. Thank you very much Sergei.
SergeiBaklan
Jan 11, 2022Diamond Contributor
johnnycasali365 , you are welcome