moonlight22
New Member
- Joined
- Aug 15, 2014
- Messages
- 24
Hi,
Is there a way to use the Range.Find to look for multiple criteria instead of just one value, and not withing a consecutive range, but multiple columns across rows?
I'm assuming it can be accomplished by using the "AND" but I don't know where to place it in the function.
In my case I have 4 values in one tab (Controlsheet) in the range I12:I15. These values are found in another tab (Datasheet), withing the following columns: B, F, I & J.
My current formula looks like this....but this was when i was only looking for one value in M:M
Any help is much much appreciated!
Is there a way to use the Range.Find to look for multiple criteria instead of just one value, and not withing a consecutive range, but multiple columns across rows?
I'm assuming it can be accomplished by using the "AND" but I don't know where to place it in the function.
In my case I have 4 values in one tab (Controlsheet) in the range I12:I15. These values are found in another tab (Datasheet), withing the following columns: B, F, I & J.
My current formula looks like this....but this was when i was only looking for one value in M:M
Code:
Rng = Sheets("DataSheet").Range("M:M").Find(CriteriaValue, Sheets("DataSheet").Range("M1"), xlValues, xlWhole)
Any help is much much appreciated!