Pivot table directly in FORM for Ms. Access 2003
Hey pals, need your hand on this one.
I have a FORM Code:
Private Sub RUN_Click()
On Error Go to Err_CHSWB_Final1_Click
Dim stDocName As String
Dim stLinkCriteria As String
DoCmd.OpenQuery "CHSWB_Final1", acViewNormal, acReadOnly
Exit_CHSWB_Final1_Click:
Exit Sub
Err_CHSWB_Final1_Click:
MsgBox Err.Description
Resume Exit_CHSWB_Final1_Click
End Sub
Can I pivot the resulted table directly in that FORM Code (by adding more lines), or should I pivot the table manually? And if I can do that in that FORM Code, could you guys give me the pivot syntax?
Do I get myself clear on this? Need your response...
Thanks indeed :)