Jan 30, 2014 #1 aj3221 Technical User May 14, 2008 79 US Good morning! I have a string field where the data can vary in length & I need to remove the last character of the field. Example: table.field value is currently 12548798 I need to return in my formula: 1254879 Thank you in advance for any assistance!
Good morning! I have a string field where the data can vary in length & I need to remove the last character of the field. Example: table.field value is currently 12548798 I need to return in my formula: 1254879 Thank you in advance for any assistance!
Jan 30, 2014 #2 Charliy Programmer Aug 12, 2008 601 US create a formula: left({yourfield},length({yourfield})-1) Upvote 0 Downvote
Jan 30, 2014 Thread starter #3 aj3221 Technical User May 14, 2008 79 US You rock! Thanks! Upvote 0 Downvote
Jan 30, 2014 Thread starter #4 aj3221 Technical User May 14, 2008 79 US I have another field where I have to get rid of the first 3 characters? BAY4895 and I need 4895. Upvote 0 Downvote
Jan 30, 2014 Thread starter #5 aj3221 Technical User May 14, 2008 79 US I thought I had it with: Right({arss.route}, 5) But there are spaces in the field so it varies. The field can be up to 7 characters. But there are spaces and / or dead spots. MW WF TH I would like to grab the WF TH of this string. Sometimes it could be: MW WF R I think maybe mid would work. I want to grab positions 4-7. Upvote 0 Downvote
I thought I had it with: Right({arss.route}, 5) But there are spaces in the field so it varies. The field can be up to 7 characters. But there are spaces and / or dead spots. MW WF TH I would like to grab the WF TH of this string. Sometimes it could be: MW WF R I think maybe mid would work. I want to grab positions 4-7.
Jan 30, 2014 Thread starter #6 aj3221 Technical User May 14, 2008 79 US Mid worked. I walked myself right through that one Upvote 0 Downvote