An if statement should work in principle. What you posted: IF[CustomerID]=([InternetTBL]![CustomerID], Yes,No) won't work as it is not set up correctly. Try:
IF([CustomerID]=[InternetTBL]![CustomerID], Yes,No)
I just moved the bracket from after the = to before the if, which is where it should...