Forum Discussion
MarkShnier__You
Qrew Legend
what is the result that you want.
Mark
------------------------------
Mark Shnier (Your Quickbase Coach)
mark.shnier@gmail.com
------------------------------
Mark
------------------------------
Mark Shnier (Your Quickbase Coach)
mark.shnier@gmail.com
------------------------------
ThomasRingkamp1
3 years agoQrew Member
Sorry, guess that would help. I would like a record with 3 fields for Location then the first number and the second. So for example:
Fremont - 5634.88 - 18050.0
Hagerstown - 5011.86 - 20934.0
------------------------------
Thomas Ringkamp
------------------------------
Fremont - 5634.88 - 18050.0
Hagerstown - 5011.86 - 20934.0
------------------------------
Thomas Ringkamp
------------------------------
- MarkShnier__You3 years agoQrew Legendthis seemed to work to strip out the extra text.
var text RemoveNulls = SearchAndReplace([Input String], "null,","");
var text RemoveOneBracket = SearchAndReplace($RemoveNulls, "(","");
var text RemoveOtherBracket = SearchAndReplace($RemoveOneBracket, ")","");
var text RemoveApostrophe = SearchAndReplace($RemoveOtherBracket, "'","");
var text RemoveNullAgain = SearchAndReplace($RemoveApostrophe, "null,","");
var text RemoveZeroPointZero = SearchAndReplace($RemoveNullAgain, " 0.0,","");
var text RemoveSpaces = SearchAndReplace($RemoveZeroPointZero, " ","");
$RemoveSpaces
Then you can use the Part function to pull out various of the parts separated by a comma into separate fields.
------------------------------
Mark Shnier (Your Quickbase Coach)
mark.shnier@gmail.com
------------------------------