Drumin_Phreak
New Member
- Joined
- Oct 10, 2016
- Messages
- 25
Hello,
I have a question that i am trying my best to ask. I want to be able to find a SINGLE Value across a range of columns.
The best way i can explain this is I have a value of "ABC7190612" in a cell.
I need to find ABC in the "Product" Column
I need to find 7 in the "Year" Column
I need to find 19 in the "Day" Column
I need to find 06 in the "Month" Column
I need to find 1 in the "Shift" Column
And I need to find 2 in the "Order" Column
If that is all found on the same row display a message box "valid"
I have been experimenting with :
.Columns(5).Find(What:=Left(Target.Value, 4), LookAt:=xlWhole)
But how do I tell it that it all has to be on the same row and in that sequence?
I have a question that i am trying my best to ask. I want to be able to find a SINGLE Value across a range of columns.
The best way i can explain this is I have a value of "ABC7190612" in a cell.
I need to find ABC in the "Product" Column
I need to find 7 in the "Year" Column
I need to find 19 in the "Day" Column
I need to find 06 in the "Month" Column
I need to find 1 in the "Shift" Column
And I need to find 2 in the "Order" Column
If that is all found on the same row display a message box "valid"
I have been experimenting with :
.Columns(5).Find(What:=Left(Target.Value, 4), LookAt:=xlWhole)
But how do I tell it that it all has to be on the same row and in that sequence?