Replace string after text
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I have values that contain a decimal and I want to remove the decimal and the text after the decimal. I would prefer to use a formula vs parsing the text first because I only want it to apply to records that have Texas as a jurisdiction and where the description field contains the word credits. Is there anyway to do this as one formula vs filter the data, parsing and then unioning back together?
Solved! Go to Solution.
- Labels:
- Datasets
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Ho @bsolove ,
you can use a formula:
Left([Field1], STRCSPN([Field1],'.'))
STRCSPN counts the number of characters to '.' (if there is no decimal separator, the length is returned). LEFT takes the characters left to '.'
If you want to apply the formula only to specific records, you can use an IF clause:
IF CONTAINS([Field2], 'Texas') THEN
Left([Field1], STRCSPN([Field1],'.'))
ELSE
[Field1]
ENDIF
Hope this is helpful
Best,
Roland
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I think this formula should do it...
LEFT([Data],FindString([Data], "."))
Find the position of the . and then read from the left to that value.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
hi @bsolove,
I found this way to solve it with the formula tool
Let me know what do you think
Best,
Vianney
Vianney
