Hi,
I have a table with one field named RequestID. It is a text field. I would like a query to display only records in the table that are numeric values.
I used the function IsNumeric(RequestID) as below:
However, I get records that are not numeric also displaying. Is this the only way to bring up records with only numeric values in them?
Thanks in advance,
TN
I have a table with one field named RequestID. It is a text field. I would like a query to display only records in the table that are numeric values.
I used the function IsNumeric(RequestID) as below:
Code:
SELECT PPES.Date, Last(PPES.Time) AS LastOfTime, PPES.RequestID, PPES.UserName
FROM PPES
WHERE (((IsNumeric([RequestID]))<>False))
However, I get records that are not numeric also displaying. Is this the only way to bring up records with only numeric values in them?
Thanks in advance,
TN