Hi there,
First time posting (technically second time but I lost my first post ... grr!) so be gentle.
I have a table in Access with 2 fields; DelID (text) and AssetDesc (memo).
DelID is a unique asset ID and AssetDesc is a location string which can be up to 450 chars in length.
What I need to do is split AssetDesc up into substrings of no more than 70chars (or last full word before 70chars) and put each substring into a new row along with the original asset ID in the field next to it.
For example, I may have :
DelID | AssetDesc
ABC123 | This is a bloody long string with no delimiters which goes on and on and on, and so forth.
What I would want the output to be is :
DelID | AssetDesc
ABC123 | This is a bloody long string with no delimiters which goes on and on
ABC123 | and on, and so forth.
I expect that this will require some VBA trickery to solve but I have no idea how to go about it. I've never used VBA in Access so I am not too sure how to utilise it but I program in Excel quite frequently so I know the language quite well.
If anyone has any ideas I would be extremely grateful, and some tips also on how to use VBA in Access properly would result in double extreme gratefulness!
Kind regards,
Splatgore
First time posting (technically second time but I lost my first post ... grr!) so be gentle.

I have a table in Access with 2 fields; DelID (text) and AssetDesc (memo).
DelID is a unique asset ID and AssetDesc is a location string which can be up to 450 chars in length.
What I need to do is split AssetDesc up into substrings of no more than 70chars (or last full word before 70chars) and put each substring into a new row along with the original asset ID in the field next to it.
For example, I may have :
DelID | AssetDesc
ABC123 | This is a bloody long string with no delimiters which goes on and on and on, and so forth.
What I would want the output to be is :
DelID | AssetDesc
ABC123 | This is a bloody long string with no delimiters which goes on and on
ABC123 | and on, and so forth.
I expect that this will require some VBA trickery to solve but I have no idea how to go about it. I've never used VBA in Access so I am not too sure how to utilise it but I program in Excel quite frequently so I know the language quite well.
If anyone has any ideas I would be extremely grateful, and some tips also on how to use VBA in Access properly would result in double extreme gratefulness!
Kind regards,
Splatgore