Results 1 to 5 of 5
  1. #1
    GraeagleBill's Avatar
    GraeagleBill is online now Experienced Old Geezer
    Windows 7 64bit Access 2003
    Join Date
    Feb 2011
    Posts
    2,096

    Testing for numeric


    In the query below, I'm wanting to limit the query to where the "text" field is numeric. E.g., 1203. What you see coded in the screenshot does not work. Any ideas?

    Click image for larger version. 

Name:	ChkDep.jpg 
Views:	8 
Size:	38.0 KB 
ID:	23804

  2. #2
    Bob Fitz's Avatar
    Bob Fitz is offline Access Developer
    Windows 7 32bit Access 2013
    Join Date
    May 2011
    Location
    Essex UK
    Posts
    3,614
    Just IsNumeric should work
    If this helped, please click the star at the bottom left of this posting and add to my reputation . Many thanks.
    Bob Fitzpatrick

  3. #3
    GraeagleBill's Avatar
    GraeagleBill is online now Experienced Old Geezer
    Windows 7 64bit Access 2003
    Join Date
    Feb 2011
    Posts
    2,096
    That's what I started with, but query editor wrapped it in quotes so the query was processing the string "IsNumeric" as the criteria.

  4. #4
    CJ_London is online now VIP
    Windows 8 Access 2010 32bit
    Join Date
    Mar 2015
    Posts
    11,931
    put isnumeric([ChkNo]) in a new column on the field row
    untick the show box
    put true in the criteria

  5. #5
    GraeagleBill's Avatar
    GraeagleBill is online now Experienced Old Geezer
    Windows 7 64bit Access 2003
    Join Date
    Feb 2011
    Posts
    2,096
    OUTSTANDING Ajax! In the middle of the night it occurred to me to try editing the SQL as :
    Code:
    SELECT MemID, [FirstName] & " " & [Lastname] AS Name, DOPmt, ChkNo, CYP, Selected FROM tblMembers WHERE (((Selected)="►") AND ((IsNumeric([ChkNo]))=True));
    which worked perfectly and is exactly what you suggested I try via the design view.

    As usual, you're a winner.
    Thanks,
    Bill

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Testing Chrome Add In
    By alansidman in forum General Chat
    Replies: 0
    Last Post: 09-01-2015, 09:40 AM
  2. Psych Testing
    By CherylS in forum Access
    Replies: 3
    Last Post: 08-18-2014, 01:07 PM
  3. Testing
    By alansidman in forum General Chat
    Replies: 5
    Last Post: 10-24-2013, 03:58 PM
  4. Testing Scores
    By helpaccess in forum Queries
    Replies: 4
    Last Post: 08-22-2011, 09:08 AM
  5. Testing links
    By piflechien73 in forum Forms
    Replies: 0
    Last Post: 06-01-2009, 05:09 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums