Post Reply 
Another question from a newbie
10-25-2019, 12:45 PM
Post: #3
RE: Another question from a newbie
to add to what Joe said, it sounds like what you were wanting to do with RIGHT() can be done with MID() with only one argument following the string.

Code:
LEFT("ABCDEFG",3)   --> "ABC"
RIGHT("ABCDEFG",3)  --> "EFG"
MID("ABCDEFG",3,2)  --> "CD"      starting from the 3rd character, return 2 characters
MID("ABCDEFG",3)    --> "CDEFG"   starting from the 3rd character, return the remaining characters.
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Another question from a newbie - DrDarius - 10-25-2019, 02:21 AM
RE: Another question from a newbie - Wes Loewer - 10-25-2019 12:45 PM



User(s) browsing this thread: 1 Guest(s)