B
Bill
I haven't done any coding for two years and didn't do much of it then but
here is my problem. I have looked though my old access books but am not
having any luck what so ever.
I have a table called "tblInvoice" with three fields "strInvNum",
"strGLAcct", and "dblAmount". The fields strGlAcct and dblAmount may contain
arrays. An example of the data looks like this.
strInvNum strGLAcct dblAmount
556 536~436 50.00~100.15
557 466 30.00
558 536~556~563 1.50~536.00~56.15
I need to then put the records into a table called tblInvoiceDetail as
follows:
strInvNum LineNum strGlAcct dblAmount
556 1 536 50.00
556 2 436 100.15
557 1 446 30.00
558 1 536 1.50
558 2 556 536.00
558 3 563 56.15
Any suggestions on how to do this? I did it years ago but no longer have the
database to copy the code from.
here is my problem. I have looked though my old access books but am not
having any luck what so ever.
I have a table called "tblInvoice" with three fields "strInvNum",
"strGLAcct", and "dblAmount". The fields strGlAcct and dblAmount may contain
arrays. An example of the data looks like this.
strInvNum strGLAcct dblAmount
556 536~436 50.00~100.15
557 466 30.00
558 536~556~563 1.50~536.00~56.15
I need to then put the records into a table called tblInvoiceDetail as
follows:
strInvNum LineNum strGlAcct dblAmount
556 1 536 50.00
556 2 436 100.15
557 1 446 30.00
558 1 536 1.50
558 2 556 536.00
558 3 563 56.15
Any suggestions on how to do this? I did it years ago but no longer have the
database to copy the code from.