IanHallett
IS-IT--Management
Hi,
I have a table with the following fields:
{InvoiceNumber} {Line Number} {Text}
There could be several records with the same Invoice Number, each of which will have a line number (i.e. 1,2,3, etc). The text field represents text notes added against an invoice so there could be several notes against each invoice.
I would like (ideally) to end up with one record or line per invoice which concatenates the text fields pertaining to that invoice, my data looks like the following:
{InvoiceNumber} {LineNumber} {Text}
1234 1 Text line 1
1234 2 Text Line 2
1234 3 Text Line 3
I would like to end up with one line as follows:
{InvoiceNumber} {Text}
1234 Text Line 1 Text Line 2 Text Line 3
I hope this all makes.
I have a table with the following fields:
{InvoiceNumber} {Line Number} {Text}
There could be several records with the same Invoice Number, each of which will have a line number (i.e. 1,2,3, etc). The text field represents text notes added against an invoice so there could be several notes against each invoice.
I would like (ideally) to end up with one record or line per invoice which concatenates the text fields pertaining to that invoice, my data looks like the following:
{InvoiceNumber} {LineNumber} {Text}
1234 1 Text line 1
1234 2 Text Line 2
1234 3 Text Line 3
I would like to end up with one line as follows:
{InvoiceNumber} {Text}
1234 Text Line 1 Text Line 2 Text Line 3
I hope this all makes.