psyduck1085
Registered User.
- Local time
- Tomorrow, 01:58
- Joined
- Sep 18, 2013
- Messages
- 13
Hi All,
I have some issues on ms access report.
Example: I have a query that give me result A:1234 B:2345, so what i want is to divide the two data into two seperate report which same format (letter).
or
Example: from Form, i print a report (based on my template). And I'm using below VBA.
Dim strReportName As String
Dim strCriteria As String
strReportName = "Query1"
DoCmd.OpenReport "Query1", , , _
strCriteria = "[Counterparty]='" & Me![Counterparty] & "'"
but issues here is my report is nothing but blank!!!
Any solution???
I have some issues on ms access report.
Example: I have a query that give me result A:1234 B:2345, so what i want is to divide the two data into two seperate report which same format (letter).
or
Example: from Form, i print a report (based on my template). And I'm using below VBA.
Dim strReportName As String
Dim strCriteria As String
strReportName = "Query1"
DoCmd.OpenReport "Query1", , , _
strCriteria = "[Counterparty]='" & Me![Counterparty] & "'"
but issues here is my report is nothing but blank!!!
Any solution???