Control showing #NAME?

Lifeseeker

Registered User.
Local time
Today, 00:04
Joined
Mar 18, 2011
Messages
273
Hi,

I have a form based off of a query.

When I add this new control(bound) from the query, I keep getting #NAME even though I have checked that the column is there in the query.

I must be missing something here...

can anyone help me?

Thank you
 
What type of control and what is your field's datatype? How are you adding this control?
 
If you run the Query independently does a parameter box pop up?

Linq ;0)>
 
What is the control source look like of the control? You are using the field from the FORM'S record source aren't you? You aren't trying to add the field from the query like this:

Code:
=[QueryNameHere]![FieldNameHere]
are you? Because you can't do it that way.
 
What is the control source look like of the control? You are using the field from the FORM'S record source aren't you? You aren't trying to add the field from the query like this:

Code:
=[QueryNameHere]![FieldNameHere]
are you? Because you can't do it that way.


I think I solved the problem. Somehow it just takes longer for it to get reflected on the front-end. It was a field that I added in the back-end. After I waited for a bit, it started to show data.

Still strange though. Shouldn't it be instant?
 

Users who are viewing this thread

Back
Top Bottom