Format a Query prompt

yllib456

New member
Local time
Today, 11:12
Joined
Jan 18, 2012
Messages
2
I have this query that finds people based on a given id number that they own. The ID number is in the format of (0000-0000) The tables have input masks so that when entering the ID number all the user has to worry about is entering the numbers. I have a report for that shows every customer in the database and i want to be able to copy and paste the (0000-0000) portion of the ID number but the query is only able to find customers by (00000000) format is there a way that i can get the query prompt to ignore the dash in between the numbers or would it be easier to remove the input mask and enter everything manually?
 
Use a form for inputs and then you can have a hidden text box on it which you can refer to in your query and you can format that text box to show the data without the dash.
 

Users who are viewing this thread

Back
Top Bottom