Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Immediate Purpose: To do a right-to-left scan in EXCEL formula operating
on another text field, similar to what's allowed in ACCESS query formula with InStrRev function. Why? Often for text fields, like people names, streets, etc., parsing is easier if can scan text reversed. More quickly isolates last name root, or maybe one suffix. FIND's Left to right scan is messier to wade through all variations of first, middle (or not), and/or last name prefix, if any. A work-around is possible but very bulky. I use a formula to create my own reversed text. Then use normal left-to-right FIND on it, and offset FIND's result against LENgth of forward text field to get desired answer. How bulky: For a 30-byte name field, you'd need a reversing formula 641 bytes long, with 30 terms in it: =mid(F3,len(F3)-0,1)&mid(F3,len(F3)-1,1)&... &mid(F3,len(F3)-29,1). (I actually use another formula to build this one.) General Purpose: Chop up data easiest way possible to separately field portions of it. Important in data acquisition and text data analysis. Examples are parsing raw files to load databases, or isolating patterns for fraud forensics, etc. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
EXCEL: How to scan text reversed (like ACCESS: InStrRev)? | Excel Worksheet Functions | |||
Excel error: Undefined Function 'InStrRev' in Expression | Excel Worksheet Functions | |||
scan a document to edit or type text | Excel Discussion (Misc queries) | |||
is there a instrRev function in excel functions? | Excel Worksheet Functions | |||
is there a instrRev function in excel functions? | Excel Worksheet Functions |