Hello,
I am looking to find a cell within a single column whose 10 left letters equals some text. Specifically in one column, I have a bunch of blank cells except for one cell that begins with the text: "Not Enough". I am looking to find a way to check that column to see if a cell like that exists. In Excel, I simply use the following array formula:
{=MATCH("Not Enough",LEFT('Output'!$D$7:$D$500,10),0)}
That works great, but I do not know how to do it in VBA. Any help would be much appreciated.
I am looking to find a cell within a single column whose 10 left letters equals some text. Specifically in one column, I have a bunch of blank cells except for one cell that begins with the text: "Not Enough". I am looking to find a way to check that column to see if a cell like that exists. In Excel, I simply use the following array formula:
{=MATCH("Not Enough",LEFT('Output'!$D$7:$D$500,10),0)}
That works great, but I do not know how to do it in VBA. Any help would be much appreciated.