Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Selecting a record if it contains a number.. 1

Status
Not open for further replies.

rji1124

Technical User
Nov 15, 2001
67
US
Hi - we are on CR 9... I would like some help with how I would go about selecting records that contain a number in the field. We have a field called updated.by... in the last 203 positions of some of the IDs in this field have a number (like xyz01 or zzz123. Some of the IDs do not have the numeric ending. I would like to pull only the IDs that have a number at the end.. so I am thinking I only need to look at the last character in the updated.by field and determine if it is a numeric or not... if it is, I want to report on it.. if it isn't - ignore it.
Thanks for any help...
 
rji1124,

try adding this to your record selection:

NumericText(right({table.updated.by},1)) = true

Andy
 
BAM! Thanks Andy - that was perfect...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top