I'm slightly confused. I've written a small piece of a code that reads a string and outputs if the word is present in the string. The below code returns me 1 as expected
Sub FindSomeText()
MsgBox InStr("Look in this string", "Look")
End Sub
When i used the same logic on the below code but with a longer string i get a response of 16? instead of 1. Why would this be?
Sub SearchAString()
MsgBox InStr("Search through this random string and find how many strings are similar", "this")
End Sub