rimrattlerla11
New Member
- Joined
- Jan 27, 2016
- Messages
- 17
I have a list of raw data, from which I'm trying to extract whatever appears after the word "Code": in any one particular cell.
The sample below shows how the data appears in one particular cell. Each grouping is separated by {} and is semicolon delimited.
The desired output from this formula should be this:
"2BZ";"1AG";"FWR-00";"PDW";"LOS-01"
Thanks in advance for any help you can provide!
The sample below shows how the data appears in one particular cell. Each grouping is separated by {} and is semicolon delimited.
{ "category": AAA; "description":XYZ ; "Code": "2BZ"; "msrp": 200; "invoice": 160; CategoryIdList": 3 };
{ "category": BBB; "description":ABC ; "Code": "1AG"; "msrp": 100; "invoice": 80; CategoryIdList": 11 };
{ "category": CCC; "description":DEF ; "Code": "FWR-00"; "msrp": 20; "invoice": 16; CategoryIdList": 77 };
{ "category": DDD; "description":HIJ ; "Code": "PDW"; "msrp": 500; "invoice": 411; CategoryIdList": 55 };
{ "category": EEE; "description":KLM ; "Code": "LOS-01"; "msrp": 55; "invoice": 42; CategoryIdList": 12 };
The desired output from this formula should be this:
"2BZ";"1AG";"FWR-00";"PDW";"LOS-01"
Thanks in advance for any help you can provide!