Hi. I have 2 master data sheets (Sheet A and Sheet B). Both sheets have a column called [Company Name]. On Sheet A, i need an equation that looks at [Company Name] in Sheet A, then searches for a match in Sheet B. If there is a company name match in Sheet B, then I would like to return the value of a different column [Company Type] from Sheet B. If there is no match, then I would like to return a blank (or a default text that I specify). The equation below works for returning the right value when there is a match, but when there is no match (e.g. Company name is in Sheet A, but not in Sheet B), then the equation returns "#NO MATCH".
=INDEX({Sheet B Company Type}, MATCH([Company Name]@row, {Sheet B Company Name}, 0))
Can anyone tell me how to modify the equation so that instead of "#NO MATCH" it returns either a blank OR a specific text that I can specify (e.g. "No Company Type Available").
Thanks in advance.