Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Reverse Pivot a Result Set into One Column 1

Status
Not open for further replies.

Fattire

Technical User
Nov 30, 2006
127
US
I would like to take:
INVOICE|QTY
12345 |500,400,700,600

And turn it into:
INVOICE|QTY
12345 |500
12345 |400
12345 |700
12345 |600

Any sites or previous links you know of? I couldn't find anything.
 
There can as many as 48 quantities and they are always delimited with a comma. The invoice will never appear in more then one row.
 
But there can be thousands of invoices in a single import...
 
Try code like:
Code:
Public Function NormalizeFattire()
    Dim rs As DAO.Recordset
    Dim db As DAO.Database
    Dim strSQL As String
    Dim intQty As Integer
    Set db = CurrentDb
    Set rs = db.OpenRecordset("SELECT INVOICE,QTY FROM tblFattire1")
    With rs
      .MoveFirst
      Do Until .EOF
        For intQty = 0 To UBound(Split(!Qty, ","))
          strSQL = "INSERT INTO tblFattire2 (INVOICE, Qty) VALUES (" & _
              !INVOICE & "," & Split(!Qty, ",")(intQty) & ")"
          db.Execute strSQL, dbFailOnError
        Next
        .MoveNext
      Loop
      .Close
    End With
    Set rs = Nothing
    Set db = Nothing
End Function

Duane
Hook'D on Access
MS Access MVP
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top