let say I have a text x="I am a happy man"
If I set y=Instr(x, a), y is equal to 3. However I want y to be 9 which is the location of the "a" in "happy". How can I do
x = "I am a happy man"
y = InStr(8, x, "a")
x = "I am a happy man"
y = InStr(1, x, "a")
y = InStr(1 + y, x, "a")
y = InStr(1 + y, x, "a")
y = InStr(1, x, "happy") + 1