Hi,
Have an option group on a form which control the data on a form as below
I just want this same data thats on the form to be on the report per option selection.
I put this on the query criteria on the Group field,as this is the field for data selection.
but no luck. Am I on the right track?
Thank you
KP
Have an option group on a form which control the data on a form as below
Code:
Private Sub SelectGroup_AfterUpdate()
Select Case Me!SelectGroup
Case 1
Me.RecordSource = "qryCountCheck-TI"
Case 2
Me.RecordSource = "qryCountCheck-SG"
End Select
End Sub
I just want this same data thats on the form to be on the report per option selection.
I put this on the query criteria on the Group field,as this is the field for data selection.
Code:
[forms]![Count Reconciliation]![SelectGroup]
Thank you
KP