PC Review


Reply
Thread Tools Rate Thread

Inputting Large Amounts of Data

 
 
Thorson
Guest
Posts: n/a
 
      4th Nov 2008
Is there a way to update one field for a large amount of records, if each
record will have a different value for that field, without typing each field
value in individually?
 
Reply With Quote
 
 
 
 
KARL DEWEY
Guest
Posts: n/a
 
      4th Nov 2008
Will not an update query do it for you?
--
KARL DEWEY
Build a little - Test a little


"Thorson" wrote:

> Is there a way to update one field for a large amount of records, if each
> record will have a different value for that field, without typing each field
> value in individually?

 
Reply With Quote
 
 
 
 
Thorson
Guest
Posts: n/a
 
      4th Nov 2008
no because the field for each record needs to be different, from my
understanding in an update query it updates the field to the same value for
each record.

"KARL DEWEY" wrote:

> Will not an update query do it for you?
> --
> KARL DEWEY
> Build a little - Test a little
>
>
> "Thorson" wrote:
>
> > Is there a way to update one field for a large amount of records, if each
> > record will have a different value for that field, without typing each field
> > value in individually?

 
Reply With Quote
 
KARL DEWEY
Guest
Posts: n/a
 
      4th Nov 2008
What determines the new value? Maybe you can use a translation table in
the update query.

--
KARL DEWEY
Build a little - Test a little


"Thorson" wrote:

> no because the field for each record needs to be different, from my
> understanding in an update query it updates the field to the same value for
> each record.
>
> "KARL DEWEY" wrote:
>
> > Will not an update query do it for you?
> > --
> > KARL DEWEY
> > Build a little - Test a little
> >
> >
> > "Thorson" wrote:
> >
> > > Is there a way to update one field for a large amount of records, if each
> > > record will have a different value for that field, without typing each field
> > > value in individually?

 
Reply With Quote
 
Clif McIrvin
Guest
Posts: n/a
 
      4th Nov 2008
"KARL DEWEY" <(E-Mail Removed)> wrote in message
news:96E616CC-79C2-49E9-AD0E-(E-Mail Removed)...
> What determines the new value? Maybe you can use a translation
> table in
> the update query.
>
> --
> KARL DEWEY
> Build a little - Test a little
>


or perhaps a VBA Function?

--
Clif
Still learning Access 2003




 
Reply With Quote
 
John W. Vinson
Guest
Posts: n/a
 
      5th Nov 2008
On Tue, 4 Nov 2008 14:13:01 -0800, Thorson <(E-Mail Removed)>
wrote:

>no because the field for each record needs to be different, from my
>understanding in an update query it updates the field to the same value for
>each record.


The Update To need not be a constant - but there must be SOME way for Access
to determine which record gets what value. How do you determine what the new
value should be? Can it be derived or looked up given existing values in the
record? Where does the new value COME from?

Obviously, if it comes from a human brain, then there must be a path from
brain to fingers to keyboard to form; the Access telepathic interface module
won't be coming out until Access version <mmmpf> <THAT INFORMATION IS NDA>

SIGNAL INTERRUPTED
CONNECTION HAS BEEN LOST
--

John W. Vinson [MVP]
 
Reply With Quote
 
Thorson
Guest
Posts: n/a
 
      21st Nov 2008
Sorry it took me so long to respond, this was all going to my spam box in my
e-mail....

The data that is input does just come from a spreadsheet listing. I have a
table that lists animal's birth information, when that information is entered
some animals are missing their Sire (father) listing, later this field is
updated by entering in the sire or by updating the currently listed sire to
the correct one. This is usually done ~400 or more animals at once, it is
time consuming to go through the table and enter them all or change them
manually. It doesn't happen that often so I don't know that I need a code
that is regularly available to use. There is obviously no pattern to which
sire goes with which animal so I'm not sure how to do this.

let me know if you need more info. Thank you for the help.

"John W. Vinson" wrote:

> On Tue, 4 Nov 2008 14:13:01 -0800, Thorson <(E-Mail Removed)>
> wrote:
>
> >no because the field for each record needs to be different, from my
> >understanding in an update query it updates the field to the same value for
> >each record.

>
> The Update To need not be a constant - but there must be SOME way for Access
> to determine which record gets what value. How do you determine what the new
> value should be? Can it be derived or looked up given existing values in the
> record? Where does the new value COME from?
>
> Obviously, if it comes from a human brain, then there must be a path from
> brain to fingers to keyboard to form; the Access telepathic interface module
> won't be coming out until Access version <mmmpf> <THAT INFORMATION IS NDA>
>
> SIGNAL INTERRUPTED
> CONNECTION HAS BEEN LOST
> --
>
> John W. Vinson [MVP]
>

 
Reply With Quote
 
John W. Vinson
Guest
Posts: n/a
 
      26th Nov 2008
On Fri, 21 Nov 2008 11:23:01 -0800, Thorson
<(E-Mail Removed)> wrote:

>Sorry it took me so long to respond, this was all going to my spam box in my
>e-mail....
>
>The data that is input does just come from a spreadsheet listing. I have a
>table that lists animal's birth information, when that information is entered
>some animals are missing their Sire (father) listing, later this field is
>updated by entering in the sire or by updating the currently listed sire to
>the correct one. This is usually done ~400 or more animals at once, it is
>time consuming to go through the table and enter them all or change them
>manually. It doesn't happen that often so I don't know that I need a code
>that is regularly available to use. There is obviously no pattern to which
>sire goes with which animal so I'm not sure how to do this.


Again:

How can Access determine - based on information in a table or in a spreadsheet
- WHICH animal is the sire? Is that information available in computer-readable
form, or is this something coming from a sheet of paper via a human mind?

You certainly would NOT do this using a table datasheet directly, except
perhaps as a one-time emergency operation; you'ld use a Form instead, and
perhaps an Update Query if you can identify a group of animals all with the
same sire.

But you have not explained how that information can be identified.
--

John W. Vinson [MVP]
 
Reply With Quote
 
Thorson
Guest
Posts: n/a
 
      26th Nov 2008
I'm sorry I must have mis-understood last time... The information is stored
on an excel spreadsheet. A person out at the farm enters it into excel and
then if any changes are needed in the future they once again go into excel
and enter the new sire or other changes.

The hope is that soon the farm workers will enter the information straight
into the database, so if there are any changes they will skip the step of
entering it into excel and just enter it straight into the database. So
this will hopefully be a short-term fix until the database is complete and
running.

So I have the calf ID (field name: EarTag) and the Sire information listed
in a spreadsheet in excel, I would like to update the sire information in the
database on the tblBirthInformation. Hopefully that clarifies it more.

"John W. Vinson" wrote:

> On Fri, 21 Nov 2008 11:23:01 -0800, Thorson
> <(E-Mail Removed)> wrote:
>
> >Sorry it took me so long to respond, this was all going to my spam box in my
> >e-mail....
> >
> >The data that is input does just come from a spreadsheet listing. I have a
> >table that lists animal's birth information, when that information is entered
> >some animals are missing their Sire (father) listing, later this field is
> >updated by entering in the sire or by updating the currently listed sire to
> >the correct one. This is usually done ~400 or more animals at once, it is
> >time consuming to go through the table and enter them all or change them
> >manually. It doesn't happen that often so I don't know that I need a code
> >that is regularly available to use. There is obviously no pattern to which
> >sire goes with which animal so I'm not sure how to do this.

>
> Again:
>
> How can Access determine - based on information in a table or in a spreadsheet
> - WHICH animal is the sire? Is that information available in computer-readable
> form, or is this something coming from a sheet of paper via a human mind?
>
> You certainly would NOT do this using a table datasheet directly, except
> perhaps as a one-time emergency operation; you'ld use a Form instead, and
> perhaps an Update Query if you can identify a group of animals all with the
> same sire.
>
> But you have not explained how that information can be identified.
> --
>
> John W. Vinson [MVP]
>

 
Reply With Quote
 
Paul Shapiro
Guest
Posts: n/a
 
      26th Nov 2008
You can import the Excel data into a temporary table, or even just link to
the Excel data as if it were a table. Either way, then you run an update
query by joining the new information to the existing table. I would use a
Where clause to only perform the updates for the rows where the new info
differs from the existing data.

"Thorson" <(E-Mail Removed)> wrote in message
news:76B4379B-3046-4256-B727-(E-Mail Removed)...
> I'm sorry I must have mis-understood last time... The information is
> stored
> on an excel spreadsheet. A person out at the farm enters it into excel
> and
> then if any changes are needed in the future they once again go into excel
> and enter the new sire or other changes.
>
> The hope is that soon the farm workers will enter the information straight
> into the database, so if there are any changes they will skip the step of
> entering it into excel and just enter it straight into the database. So
> this will hopefully be a short-term fix until the database is complete and
> running.
>
> So I have the calf ID (field name: EarTag) and the Sire information listed
> in a spreadsheet in excel, I would like to update the sire information in
> the
> database on the tblBirthInformation. Hopefully that clarifies it more.
>
> "John W. Vinson" wrote:
>
>> On Fri, 21 Nov 2008 11:23:01 -0800, Thorson
>> <(E-Mail Removed)> wrote:
>>
>> >Sorry it took me so long to respond, this was all going to my spam box
>> >in my
>> >e-mail....
>> >
>> >The data that is input does just come from a spreadsheet listing. I
>> >have a
>> >table that lists animal's birth information, when that information is
>> >entered
>> >some animals are missing their Sire (father) listing, later this field
>> >is
>> >updated by entering in the sire or by updating the currently listed sire
>> >to
>> >the correct one. This is usually done ~400 or more animals at once, it
>> >is
>> >time consuming to go through the table and enter them all or change them
>> >manually. It doesn't happen that often so I don't know that I need a
>> >code
>> >that is regularly available to use. There is obviously no pattern to
>> >which
>> >sire goes with which animal so I'm not sure how to do this.

>>
>> Again:
>>
>> How can Access determine - based on information in a table or in a
>> spreadsheet
>> - WHICH animal is the sire? Is that information available in
>> computer-readable
>> form, or is this something coming from a sheet of paper via a human mind?
>>
>> You certainly would NOT do this using a table datasheet directly, except
>> perhaps as a one-time emergency operation; you'ld use a Form instead, and
>> perhaps an Update Query if you can identify a group of animals all with
>> the
>> same sire.
>>
>> But you have not explained how that information can be identified.
>> --
>>
>> John W. Vinson [MVP]


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
LARGE 1, LARGE 2, LARGE 3, LARGE 4 jeel Microsoft Excel Worksheet Functions 2 30th Jan 2008 07:05 AM
Rolling Monthly Amounts to Annual Monthly Amounts =?Utf-8?B?UlY=?= Microsoft Excel Misc 0 29th Aug 2006 04:56 PM
11 $ amounts, 6 of the amounts must equal $3854.12, which 6? =?Utf-8?B?bWFyaWFubmU=?= Microsoft Excel Misc 2 26th Aug 2006 12:39 AM
How do I add 5 to amounts <25, 10 to amounts >25<100, etc? =?Utf-8?B?RHVrZQ==?= Microsoft Excel Worksheet Functions 3 7th Mar 2006 04:21 AM
transmitting large amounts of unwanted data Raymond Windows XP Networking 2 2nd Dec 2003 11:57 PM


Features
 

Advertising
 

Newsgroups
 


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