I am trying to get an automated value assiged to a particular tag in access.
There are some different types of tags, where as i have to get an automated
value of the specific tags.
For eg:
Tags: ( which will be entered)
ORANGE, APPLE,MANGO,PLUM,GRAPES etc.
And access should return the value in appropriate columns
Orange = ( A=3,D= 5, F=1)
Apple = ( B=2, E=1, F=2)
Mango = ( C= 4, F=1, G=2, I=4)
Plum = ( A= 5, B=1, D=2, H=4)
Grapes = ( C= 2, F=4, G=5, I=4)
The alphabets are the columns and the values should come in appropriate
columns as we enter the name of these fruits.
and this values shall be given in some other table and i have to get it in
the form i am using.
Can any body help how i can do this
Al Campagna - 13 Dec 2007 12:10 GMT
Pillai,
Not sure I understand...
A control's Tag property is associated with that field, not any specific
value that that field might have.
In a field called Fruit, with a Tag = "Orange", every fruit entered in
that field will have "Orange" as it's Tag value.
Seems as though what you need is... on the AfterUpdate event of Fruit...
is a Case Select (or IIF statement.)
Select Case Fruit
Case "Orange"
A = 4
D = 5
F = 1
Case "Apple"
B = 2
E = 1
F = 2
etc... for each possible Fruit value
End Select

Signature
hth
Al Campagna
Microsoft Access MVP
http://home.comcast.net/~cccsolutions/index.html
"Find a job that you love... and you'll never work a day in your life."
>I am trying to get an automated value assiged to a particular tag in
>access.
[quoted text clipped - 17 lines]
> the form i am using.
> Can any body help how i can do this
pillai - 14 Dec 2007 16:36 GMT
Thanks for your response,
A, B,C,D ... are the columns, and as on entering the name of fruit i need
the values assigned for the appropriate fruits to the assigned assigned value.
thanks
> Pillai,
> Not sure I understand...
[quoted text clipped - 38 lines]
> > the form i am using.
> > Can any body help how i can do this
John Spencer - 14 Dec 2007 17:18 GMT
It seems to me that you should have a table with
FruitStandard - table name
FruitName - unique values only
ColA
ColB
ColC
ColD
And in this table you should have ONE record for each fruit with the
relevant values entered in columns a to z.
In your Current table you only have FruitName.
Your underlying query would link the two tables together on the FruitName
fields. When you enter Apple in the current table, the query will
automatically DISPLAY the linked values for the columns in FruitStandard.
The underlying query would look something like the following.
SELECT Current.FruitName
, FruitStandard.ColA
, FruitStandard.ColB
, FruitStandard.ColC
FROM Current INNER JOIN FruitStandard
ON Current.FruitName = FruitStandard.FruitName

Signature
John Spencer
Access MVP 2002-2005, 2007
Center for Health Program Development and Management
University of Maryland Baltimore County
.
> Thanks for your response,
> A, B,C,D ... are the columns, and as on entering the name of fruit i need
[quoted text clipped - 49 lines]
>> > the form i am using.
>> > Can any body help how i can do this
Al Campagna - 14 Dec 2007 21:08 GMT
pillai,
Given a table of...
Fruit Text
A Num
B Num
C Num
etc....
My sample code will work.
If you enter "Orange" in Fruit,
Field A is set to 4
Field D is set to 5
Field F is set to 1

Signature
hth
Al Campagna
Microsoft Access MVP
http://home.comcast.net/~cccsolutions/index.html
"Find a job that you love... and you'll never work a day in your life."
> Thanks for your response,
> A, B,C,D ... are the columns, and as on entering the name of fruit i need
[quoted text clipped - 49 lines]
>> > the form i am using.
>> > Can any body help how i can do this
pillai - 19 Dec 2007 16:27 GMT
Ya that is what i require. I could do the same in excel if you want i can
send you the fiile. I dont know how to attach the file here. if you can send
me your mail id i can mail you. My mail id is pillaisg@gmail.com
thanks
> pillai,
> Given a table of...
[quoted text clipped - 61 lines]
> >> > the form i am using.
> >> > Can any body help how i can do this