@Ravindu94
In Sheet1!F4 of the attached file, the formula, copied down rows, is:
=IF(COUNTIF(Sheet2!A:A,C4),HYPERLINK("#Sheet2!D"&
MATCH(C4,Sheet2!A:A,0),
IF(D4=E4,"Complete","Incomplete")),"None")
Note that the foregoing formula returns:
"None" if the item is not found in Sheet2;
Hyperlink named "Complete", if the stock is sufficient; or
Hyperlink named "Incomplete", if the stock is insufficient.
I hope this fulfills your requirement.