Share via

Enter parameter value keeps appearing when I open a form

Anonymous
2014-09-15T15:28:13+00:00

I have a database that I have altered from a template to better fit my needs. I keep getting "Enter Parameter Value: ID" and "Enter Parameter Value: Student" every time I open the form. I have check code, checked queries, and I cannot find the source of the problem. The values ID and Student do not exist anymore in queries or tables, so I cannot figure out why it is still popping up when I open the form. I am only mildly advanced in Access, so any help is appreciated!

Microsoft 365 and Office | Access | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

7 answers

Sort by: Most helpful
  1. Anonymous
    2014-09-15T15:46:29+00:00

    Just a guess.  Open the query in design view.  Right click and open the properties box.  Look in the Order By row.  Do the same in the form (in the Properties box, Data Column, look in the Order By row)

    It may be something else, but always try the simple things 1st.

    Was this answer helpful?

    3 people found this answer helpful.
    0 comments No comments
  2. Anonymous
    2014-09-16T14:58:54+00:00

    Open the query that feeds the form - does it ask you for anything?

    Next. Go to the form and search the form's VBA for a reference to a field that you say isn't.

    As an example it may say

    Private Sub Form_Current()

    Me.SomeControlName = "Some text message"

    End Sub

    If there is no control called SomeControlName then you have found your problem.

    Next whilst you are in the form's code try to compile the database (on the Debug Tab) and see if anything crops up

    As I said, something is looking for something.  You just need to find out what

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2014-09-16T14:47:36+00:00

    I do not have any reports associated with the tables or the forms. I checked all "order by" and they are blank. I am stumped!

    Was this answer helpful?

    0 comments No comments
  4. Anonymous
    2014-09-15T20:45:12+00:00

    Oh, and be sure to check the Sort/Group list of fields/expressions too.

    Was this answer helpful?

    0 comments No comments
  5. Anonymous
    2014-09-15T19:00:11+00:00

    Check the report.  Because of the way reports work, all control source bound field names and expression term names that can not be resolved in the report's record source table/query automatically generate a prompt.

    Was this answer helpful?

    0 comments No comments