Forum Discussion
Otis2687
Mar 24, 2021Copper Contributor
Vlookup with multiple returns fix?
Here is my current formula.
=IF(VLOOKUP(B10,InvoicesMain[[Company]:[Notes]],5,FALSE)<>"Complete", "Yes", "No")
In basic, its looking for a customer and then determines if the service request is anything other than Complete. My issue comes in when I have the same customer open a second service request. It'll return the first one it finds and not continue looking for the second one. I would link the document but it has personal information of my customers on it.
Does this do what you want?
=IF(COUNTIFS(InvoicesMain[Company],B10,InvoicesMain[Notes],"<>Complete"),"Yes","No")