P
Paul
I have a field in a table which keeps the sumary of the history of events on
a product. The field is designed as memo datatype and it adds the new event
information to the existing one. For each event the details is stored in the
record not more than 4 to 5 seperate lines of information which I code the
text strings with "hard return" to seperate it out. Over the time the amount
of information is become very large and as a result it is no longer accept
further information to add on it. I wonder if I eliminate all the "hard
returns" on that record and replace it with a space or ";" symbol and
hopfully it will increase the storing capacity on that record. My question
is how to do mass replace of the "hard return" using an Access query. There
are over 10000 records in the table. The following is an example of it
Event: Merge, Date :21-Dec-04
Merge at the Location: MAY 01
Quantity: 8
Initially Created By Yearly New Physical Count 2004, Date: 9-Oct-2004
Event: Merge, Date :21-Dec-04
Merge at the Location: MAY 01
Quantity: 3
Initially Created By Yearly New Physical Count 2004, Date: 9-Oct-2004
Event: Merge, Date :21-Dec-04
Merge at the Location: MAY 01
Quantity: 2
Initially Created By Yearly New Physical Count 2004, Date: 9-Oct-2004
Initially Created By Yearly New Physical Count 2004, Date: 9-Oct-2004
I want to make it to look like this
Event: Merge, Date :21-Dec-04 Merge at the Location: MAY 01 Quantity: 8;
Initially Created By Yearly New Physical Count 2004, Date: 9-Oct-2004;
Event: Merge, Date :21-Dec-04 Merge at the Location: MAY 01 Quantity: 3;
Initially Created By Yearly New Physical Count 2004, Date: 9-Oct-2004;
Event: Merge, Date :21-Dec-04 Merge at the Location: MAY 01 Quantity: 2;
Initially Created By Yearly New Physical Count 2004, Date: 9-Oct-2004;
Initially Created By Yearly New Physical Count 2004, Date: 9-Oct-2004
There will be no "hard return" to seperate the lines or events and each
event will be seperated out with a ";" symbol. Thanks.
a product. The field is designed as memo datatype and it adds the new event
information to the existing one. For each event the details is stored in the
record not more than 4 to 5 seperate lines of information which I code the
text strings with "hard return" to seperate it out. Over the time the amount
of information is become very large and as a result it is no longer accept
further information to add on it. I wonder if I eliminate all the "hard
returns" on that record and replace it with a space or ";" symbol and
hopfully it will increase the storing capacity on that record. My question
is how to do mass replace of the "hard return" using an Access query. There
are over 10000 records in the table. The following is an example of it
Event: Merge, Date :21-Dec-04
Merge at the Location: MAY 01
Quantity: 8
Initially Created By Yearly New Physical Count 2004, Date: 9-Oct-2004
Event: Merge, Date :21-Dec-04
Merge at the Location: MAY 01
Quantity: 3
Initially Created By Yearly New Physical Count 2004, Date: 9-Oct-2004
Event: Merge, Date :21-Dec-04
Merge at the Location: MAY 01
Quantity: 2
Initially Created By Yearly New Physical Count 2004, Date: 9-Oct-2004
Initially Created By Yearly New Physical Count 2004, Date: 9-Oct-2004
I want to make it to look like this
Event: Merge, Date :21-Dec-04 Merge at the Location: MAY 01 Quantity: 8;
Initially Created By Yearly New Physical Count 2004, Date: 9-Oct-2004;
Event: Merge, Date :21-Dec-04 Merge at the Location: MAY 01 Quantity: 3;
Initially Created By Yearly New Physical Count 2004, Date: 9-Oct-2004;
Event: Merge, Date :21-Dec-04 Merge at the Location: MAY 01 Quantity: 2;
Initially Created By Yearly New Physical Count 2004, Date: 9-Oct-2004;
Initially Created By Yearly New Physical Count 2004, Date: 9-Oct-2004
There will be no "hard return" to seperate the lines or events and each
event will be seperated out with a ";" symbol. Thanks.