rpaterick Posted September 11, 2009 Share Posted September 11, 2009 Is there a way to just have the last 3 digits from a field print. Field could have a variance of digits in each record, 5, 8, 12 etc... ex: 0505333 is the data in the first record. I just want 333 to print. Thanks! Link to comment Share on other sites More sharing options...
chads Posted September 13, 2009 Share Posted September 13, 2009 return Right(Field("YOUR FIELD NAME"), 3); Link to comment Share on other sites More sharing options...
rpaterick Posted September 14, 2009 Author Share Posted September 14, 2009 return Right(Field("YOUR FIELD NAME"), 3); Cool! Thx man! Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.