Importing a canned report into access where I have a string such as:
EQUIPMENT.ACCESSORY LIST.ANALOG.1.CANON.C6412.NP7130.NEW
**or**
PARTS.PARTS.NA.NA.PANASONIC.NA.NA.OEM
I need to break this table field into 8 different query fields. Two fields in the above strings are separted by ".".
First Field was easy using InStr:
CATG_Flex01: Left([tbl_import_IKN_INV]![CATEGORY],InStr([tbl_import_IKN_INV]![CATEGORY],"."
-1)
where the returned value is "EQUIPMENT"
For example, how would I do the third field (return value would be "ANALOG"
?
Any help would be appreciated!!! Thx!
EQUIPMENT.ACCESSORY LIST.ANALOG.1.CANON.C6412.NP7130.NEW
**or**
PARTS.PARTS.NA.NA.PANASONIC.NA.NA.OEM
I need to break this table field into 8 different query fields. Two fields in the above strings are separted by ".".
First Field was easy using InStr:
CATG_Flex01: Left([tbl_import_IKN_INV]![CATEGORY],InStr([tbl_import_IKN_INV]![CATEGORY],"."
where the returned value is "EQUIPMENT"
For example, how would I do the third field (return value would be "ANALOG"
Any help would be appreciated!!! Thx!