bkurzbuch Posted June 25, 2019 Posted June 25, 2019 I have a field called "Access Code" that will always be 5 numbers followed by 3 letters. 12345abc. The customer would like to pull just the last three letters in one spot on there flyer. The trim field code I have is below, but I'm getting a error "no value returned". I can't for the life of me figure out whats wrong with my code. Any help is greatly appreciated. Right(Field("access code"),3); Quote
dreimer Posted June 25, 2019 Posted June 25, 2019 You need to add the return: return Right(Field("access code"),3); Quote
bkurzbuch Posted June 25, 2019 Author Posted June 25, 2019 OMG - That falls under DA. Thank You Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.