BishopDesigns
New Member
- Joined
- Oct 14, 2015
- Messages
- 22
I currently have logic in excel that is structured like this -
=IFERROR(INDEX($A$1:$A$1000000, SMALL(IF(LEFT($A$1:$A$1000000,1)="T", ROW($A$1:$A$1000000)-MIN(ROW($A$1:$A$1000000))+1, ""), ROW(1:1))), "")
Basically, it looks at Column A and Identifies every Row that begins with the letter "T" and lists it.
The data listed in Column A has now changed... Every single Row Starts with an "N" followed by a number in sequence and a space before you get to the letter "T"
The "N" value can be anything from "N10 " to N1000010 "
How do I get my logic to ignore the "N" numbers and continue only presenting me with the "T" values?
The "T" values could be anything from T1M6" to T200M6"
Here are some Examples:
=IFERROR(INDEX($A$1:$A$1000000, SMALL(IF(LEFT($A$1:$A$1000000,1)="T", ROW($A$1:$A$1000000)-MIN(ROW($A$1:$A$1000000))+1, ""), ROW(1:1))), "")
Basically, it looks at Column A and Identifies every Row that begins with the letter "T" and lists it.
The data listed in Column A has now changed... Every single Row Starts with an "N" followed by a number in sequence and a space before you get to the letter "T"
The "N" value can be anything from "N10 " to N1000010 "
How do I get my logic to ignore the "N" numbers and continue only presenting me with the "T" values?
The "T" values could be anything from T1M6" to T200M6"
Here are some Examples:
N362 T15M06 N204899 T130M06 N60 T5M06 |