A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » New Users
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

#NAME? error



 
 
Thread Tools Display Modes
  #11  
Old May 23rd, 2006, 05:02 PM posted to microsoft.public.access.gettingstarted
external usenet poster
 
Posts: n/a
Default #NAME? error

Didn't work. I used =[PEN] as a control source to test if [PEN] was the
problem and it wasn't. The problem is pulling [MIN PEN] out of a
multi-column table named[WPS Data].

"Wayne-I-M" wrote:

Try this

=IIf([TableName]![PEN][WPS Data]![MIN],1,0)

Insert the correct table name

--
Wayne

  #12  
Old May 23rd, 2006, 05:03 PM posted to microsoft.public.access.gettingstarted
external usenet poster
 
Posts: n/a
Default #NAME? error

I have overlooked something. Which record from [WPS Data] do you want to
view? Can you add the [WPS Data] table to a record source query for your
form? You need to reference the field, but you also need to specify a
record. What is [MIN PEN]? Describe in plain English,what you are trying
to do.

"zachnjoe" wrote in message
...
I tried it with and without [Tables] and I'm still getting the same error.

The table [WPS Data] has multiple columns. The first column is [WPS]. Do
I
need to reference [WPS] somehow so the control knows which row to pull the
[MIN PEN] value from?

"BruceM" wrote:

Did you try adding [Tables] in front of [WPS Data] as I suggested?

"zachnjoe" wrote in message
...
I changed the name of the field from [MIN] to [MIN PEN].

=IIf([PEN][WPS Data]![MIN PEN],1,0). The table [WPS Data] is not part
of
the form's record source so I have to call it out. I'm still getting
the
error.

"BruceM" wrote:

Another possibility besides what Wayne has mentioned: do controls and
fields have the same name? Also, what is WPS Data? If it is part of
the
form's record source you do not need to specify the table (or whatever
it
is). If it is not part of the form's record source then I believe you
need
to do something like:
[Tables]![WPS Data]![FieldName]

"zachnjoe" wrote in message
...
I have a control source in a text box. I've narrowed down the
problem
being
with the number, [MIN], I'm trying to pull and use from table [WPS
Data].

=IIf([PEN][WPS Data]![MIN],1,0)








  #13  
Old May 23rd, 2006, 05:06 PM posted to microsoft.public.access.gettingstarted
external usenet poster
 
Posts: n/a
Default #NAME? error

Almost all tables are multi-colum - ID, Product, Category, etc, etc

Can you let us have a few samples of the data held in [PEN] & [MIN]

Please just copy them rather than retyping (so we get the data "as is")

--
Wayne




"zachnjoe" wrote:

Didn't work. I used =[PEN] as a control source to test if [PEN] was the
problem and it wasn't. The problem is pulling [MIN PEN] out of a
multi-column table named[WPS Data].

"Wayne-I-M" wrote:

Try this

=IIf([TableName]![PEN][WPS Data]![MIN],1,0)

Insert the correct table name

--
Wayne

  #14  
Old May 23rd, 2006, 05:15 PM posted to microsoft.public.access.gettingstarted
external usenet poster
 
Posts: n/a
Default #NAME? error

Here's a shortened version of my table called [WPS Data]. [WPS] is selected
in a combo box on the form. I need to use the [MIN PEN] value associated
with the selected [WPS].

WPS MIN PEN MAX PEN
1A1457-LBW2A 0.01 0.03
1A6405-LBW1A 0.02 0.04
1A6405-LBW1B 0.01 0.03
1A6405-LBW1C 0.01 0.03
1A6405-LBW1D 0.01 0.02

"BruceM" wrote:

I have overlooked something. Which record from [WPS Data] do you want to
view? Can you add the [WPS Data] table to a record source query for your
form? You need to reference the field, but you also need to specify a
record. What is [MIN PEN]? Describe in plain English,what you are trying
to do.

"zachnjoe" wrote in message
...
I tried it with and without [Tables] and I'm still getting the same error.

The table [WPS Data] has multiple columns. The first column is [WPS]. Do
I
need to reference [WPS] somehow so the control knows which row to pull the
[MIN PEN] value from?

"BruceM" wrote:

Did you try adding [Tables] in front of [WPS Data] as I suggested?

"zachnjoe" wrote in message
...
I changed the name of the field from [MIN] to [MIN PEN].

=IIf([PEN][WPS Data]![MIN PEN],1,0). The table [WPS Data] is not part
of
the form's record source so I have to call it out. I'm still getting
the
error.

"BruceM" wrote:

Another possibility besides what Wayne has mentioned: do controls and
fields have the same name? Also, what is WPS Data? If it is part of
the
form's record source you do not need to specify the table (or whatever
it
is). If it is not part of the form's record source then I believe you
need
to do something like:
[Tables]![WPS Data]![FieldName]

"zachnjoe" wrote in message
...
I have a control source in a text box. I've narrowed down the
problem
being
with the number, [MIN], I'm trying to pull and use from table [WPS
Data].

=IIf([PEN][WPS Data]![MIN],1,0)









  #15  
Old May 23rd, 2006, 05:24 PM posted to microsoft.public.access.gettingstarted
external usenet poster
 
Posts: n/a
Default #NAME? error

Bruce would have (may already have) told you this but you need to bring the
Min Pen into the combo box. Set the coloums to 2 and use WPS and col 1 and
Min Pen as col 2.

Your formula should be

=IIf(([ComboName].[Column] 2)[WPS Data]![MIN PEN],1,0)



"zachnjoe" wrote:

Here's a shortened version of my table called [WPS Data]. [WPS] is selected
in a combo box on the form. I need to use the [MIN PEN] value associated
with the selected [WPS].

WPS MIN PEN MAX PEN
1A1457-LBW2A 0.01 0.03
1A6405-LBW1A 0.02 0.04
1A6405-LBW1B 0.01 0.03
1A6405-LBW1C 0.01 0.03
1A6405-LBW1D 0.01 0.02

"BruceM" wrote:

I have overlooked something. Which record from [WPS Data] do you want to
view? Can you add the [WPS Data] table to a record source query for your
form? You need to reference the field, but you also need to specify a
record. What is [MIN PEN]? Describe in plain English,what you are trying
to do.

"zachnjoe" wrote in message
...
I tried it with and without [Tables] and I'm still getting the same error.

The table [WPS Data] has multiple columns. The first column is [WPS]. Do
I
need to reference [WPS] somehow so the control knows which row to pull the
[MIN PEN] value from?

"BruceM" wrote:

Did you try adding [Tables] in front of [WPS Data] as I suggested?

"zachnjoe" wrote in message
...
I changed the name of the field from [MIN] to [MIN PEN].

=IIf([PEN][WPS Data]![MIN PEN],1,0). The table [WPS Data] is not part
of
the form's record source so I have to call it out. I'm still getting
the
error.

"BruceM" wrote:

Another possibility besides what Wayne has mentioned: do controls and
fields have the same name? Also, what is WPS Data? If it is part of
the
form's record source you do not need to specify the table (or whatever
it
is). If it is not part of the form's record source then I believe you
need
to do something like:
[Tables]![WPS Data]![FieldName]

"zachnjoe" wrote in message
...
I have a control source in a text box. I've narrowed down the
problem
being
with the number, [MIN], I'm trying to pull and use from table [WPS
Data].

=IIf([PEN][WPS Data]![MIN],1,0)









  #16  
Old May 23rd, 2006, 06:12 PM posted to microsoft.public.access.gettingstarted
external usenet poster
 
Posts: n/a
Default #NAME? error

If [PEN] is a field in the form's record source, you don't need to reference
the table. Also, column references in combo boxes are numbered from 0, so
the second column is 1. To add some detail to Wayne's posting, click the
three dots in the combo box property sheet and build a query based on [WPS
Data]. Include [WPS] and [MIN PEN]. Set the combo box column count to 2,
its bound column to 1, and its column widths to 1.5";0". You could also
build a named query of the same design, and use that as the row source. In
either case, set the control source of an unbound text box to:
=IIf([cboComboName].[Column](1) [PEN],1,0)
This compares the field [PEN] in your form's record source with the second
column ([MIN PEN]) of the combo box row source, returning 1 or 0 as the case
may be.

"Wayne-I-M" wrote in message
...
Bruce would have (may already have) told you this but you need to bring
the
Min Pen into the combo box. Set the coloums to 2 and use WPS and col 1
and
Min Pen as col 2.

Your formula should be

=IIf(([ComboName].[Column] 2)[WPS Data]![PEN],1,0)





"zachnjoe" wrote:

Here's a shortened version of my table called [WPS Data]. [WPS] is
selected
in a combo box on the form. I need to use the [MIN PEN] value associated
with the selected [WPS].

WPS MIN PEN MAX PEN
1A1457-LBW2A 0.01 0.03
1A6405-LBW1A 0.02 0.04
1A6405-LBW1B 0.01 0.03
1A6405-LBW1C 0.01 0.03
1A6405-LBW1D 0.01 0.02

"BruceM" wrote:

I have overlooked something. Which record from [WPS Data] do you want
to
view? Can you add the [WPS Data] table to a record source query for
your
form? You need to reference the field, but you also need to specify a
record. What is [MIN PEN]? Describe in plain English,what you are
trying
to do.

"zachnjoe" wrote in message
...
I tried it with and without [Tables] and I'm still getting the same
error.

The table [WPS Data] has multiple columns. The first column is
[WPS]. Do
I
need to reference [WPS] somehow so the control knows which row to
pull the
[MIN PEN] value from?

"BruceM" wrote:

Did you try adding [Tables] in front of [WPS Data] as I suggested?

"zachnjoe" wrote in message
...
I changed the name of the field from [MIN] to [MIN PEN].

=IIf([PEN][WPS Data]![MIN PEN],1,0). The table [WPS Data] is not
part
of
the form's record source so I have to call it out. I'm still
getting
the
error.

"BruceM" wrote:

Another possibility besides what Wayne has mentioned: do
controls and
fields have the same name? Also, what is WPS Data? If it is
part of
the
form's record source you do not need to specify the table (or
whatever
it
is). If it is not part of the form's record source then I
believe you
need
to do something like:
[Tables]![WPS Data]![FieldName]

"zachnjoe" wrote in message
...
I have a control source in a text box. I've narrowed down the
problem
being
with the number, [MIN], I'm trying to pull and use from table
[WPS
Data].

=IIf([PEN][WPS Data]![MIN],1,0)











 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Reserved Error - 1104 - Works in 97 not in XP? beveritt General Discussion 0 August 25th, 2005 05:07 PM
Upgrade from Exchange 2000 to 2003 error John Landis Installation & Setup 0 June 17th, 2004 08:26 PM
Continual Error 1321 Trying to Install Office 2003 Chad Harris General Discussions 9 June 11th, 2004 08:19 AM
Product Key for Office XP P.G.Indiana Setup, Installing & Configuration 1 June 7th, 2004 03:22 AM
Error #1321 MOS 2003 Setup Chad Harris Setup, Installing & Configuration 1 June 7th, 2004 12:22 AM


All times are GMT +1. The time now is 10:23 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.