From: Roberto on
I've got a variable which contains a lot of words (all in the first column). I need to find a specified word (let's say the word "interest"). When the variable contains this word, I need to know the row-number.

What's the best/easiast way to do this?
From: Jan Simon on
Dear Roberto,

> I've got a variable which contains a lot of words (all in the first column). I need to find a specified word (let's say the word "interest"). When the variable contains this word, I need to know the row-number.

What did you try to solve your problem?
Did you e.g. search for "find string" in the documentation?
Then you'd find "findstr" and "strfind".

Good luck, Jan