Forum Discussion
JeffRichey
6 years agoQrew Trainee
Hi Joey,
I did some experimenting with formula text fields using the Left and Right functions and came up with something that might work for you. It might not be the most elegant solution, but it does work.
The solution utilizes 4 fields including the the field which contains the string we want to parse and 3 other fields to store the parsed values. (You will want to hide the Trimmed Serial String field from end users and exclude it from reports and filtering.)
Create three formula text fields as follows:
I did some experimenting with formula text fields using the Left and Right functions and came up with something that might work for you. It might not be the most elegant solution, but it does work.
The solution utilizes 4 fields including the the field which contains the string we want to parse and 3 other fields to store the parsed values. (You will want to hide the Trimmed Serial String field from end users and exclude it from reports and filtering.)
Create three formula text fields as follows:
- [Model Number] enter this formula: Right([Source String], "=;")
- enter this formula: Left([Source String], "&;")
- [Serial Number] enter this formula: Right(, "=")
ZintJoseph
6 years agoQrew Captain
That worked, thanks. I will have to develop more "what ifs" for other equipment but this worked for ours.