I am using the following formula:
=IFERROR(INDEX(\'Cleaned Post\'!W:W,MATCH(Combined!$C2,\'Cleaned Post\'!$C:$C,0)),\" \")
This formula is work
What sort of values is your formula returning? If they are text values it's sufficient to concatenate a "null string" to your INDEX/MATCH
formula like this:
=IFERROR(INDEX('Cleaned Post'!W:W,MATCH(Combined!$C2,'Cleaned Post'!$C:$C,0))&"","")
That also works for numbers except it will convert them to text so if you don't want that you can try this version:
=IFERROR(IF(INDEX('Cleaned Post'!W:W,MATCH(Combined!$C2,'Cleaned Post'!$C:$C,0))="","",INDEX('Cleaned Post'!W:W,MATCH(Combined!$C2,'Cleaned Post'!$C:$C,0))),"")
I realize this is an old post, but... I settled for using conditional formatting.. if the returned value was 0, change the text color to match the background...