Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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