So, you're saying you want your database/table of new records (records of
what) to contain a 50 character text string ([ProjName]) ...
redundantly?!
What happens if the person entering the ProjName is a ppor speler? What
if
no one catches it until after a dozen "new records" have been added?
In Excel, you'd probably need to do it that way.
In Access, you could create a table of ProjectNames, give each an ID
(primary key) column (Autonumber comes to mind), and limit the text of
[ProjNameTitle] to 50 characters. Then, in "each new record" (I'm still
not
clear what these new records are records of), you'd only need to store
the
ID, not the entire text string. Plus, when the ppor speler corrects
his/her
errors, all related (by ID) records are automatically "corrected" ... no
maintenance required!
I'm getting a sense that the tables may reflect more an Excel orientation
than a relational database approach...
Regards
Jeff Boyce
Microsoft Office/Access MVP
Mango-Man said:
Jeff - Thanks again and appreciate the help. Each copy of the database
will
be used by a different group of people. When they first start I need to
get a
Project Name from them to be used throughout the database. I have a
table
called SAM with a text field called ProjName. I just want to write some
VBA
that asks the user to enter 50 chars text (max) and take the value and
stuff
it into Default Value of ProjName. This way each new record will have
the
default value that was specified as the intial value. Hopefully this
provides
enough "what"?
--
"Notre tête est ronde pour permettre à la pensée de changer de sens" -
Picabia
:
You are describing a "how", not a "what".
If I understand your description, you want each user to have his/her
own
personalized settings.
Like what? (notice we're back to the "what" question -- how depends
on
what
.... what data you have, what you want to be able to accomplish, ...)
It's hard to offer specific suggestions for a more general situation.
Regards
Jeff Boyce
Microsoft Office/Access MVP
Good morning Jeff - I am using a Switchboard as the initial screen
and
I
have
a form on one of the submenus with buttons to make it easy for the
user
to
make a Backup, Compact and Repair, and Delete all the values (sample
data)
in
the tables to prep the database for the new user. On this same form
I
would
like to have a field where the user can enter a text value, press a
command
button, and have this text value placed into the Default Value of a
Field
in
a Table. Finally I would like to have another field on the same form
that
shows the current value of the Default and then the updated value
after
the
change has been made.
--
"Notre tête est ronde pour permettre à la pensée de changer de
sens" -
Picabia
:
Do you have a login process in place for the application? Or are
you
giving
each user a front-end customized to his/her use?
Regards
Jeff Boyce
Microsoft Office/Access MVP
I have looked through the posts, but haven't quite found an answer
to
this.
I
have a database where separate copies will be used by different
people.
When
they first begin I would like an easy way to ask them for some
text
or
numerical values that will be used from that point forward as a
default
value
for certain fields. I am trying to do this in VBA so the user
doesn't
have
to
get into the Table or Form Design portion of Access. Appreciate
any
help.
MM