show / hide menu

In

This function is used to check if the given word is present in the ArgumentString.

Syntax:

In(InputValue, ArgumentStrings)

The InputValue is the string that needs to be checked. Argument String is the group of words in which the given InputValue has to be checked.

Example:

Textbox1.Value= In(Textbox2.Value, “India”, “Kerala”,”Cochin”)
Textbox2.Value=”Cochin”

The function will return true since the word Cochin was present in the ArgumentString.