Listing info on a report

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a report lising case information. I am listing the case#, SS#,
finding, Element#'s (which are: 10, 11, 12, 13, 14) for each case. I have
findings of Correct, Discrepancy, Error and Drop. What I want to do is, that
if the case is Correct, I don't want to list the Element#'s just the Case
Number, SS#, and Finding.
How can I go about this. Thanks
 
Lou said:
I have a report lising case information. I am listing the case#, SS#,
finding, Element#'s (which are: 10, 11, 12, 13, 14) for each case. I have
findings of Correct, Discrepancy, Error and Drop. What I want to do is, that
if the case is Correct, I don't want to list the Element#'s just the Case
Number, SS#, and Finding.


Use VBA code in the (detail?) section to make the Element
invisible:

Me.txtElement.Visible = (Me.txtCase <> "Correct")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Sorting 3
If Statement 3
report problem 1
Sorting and Grouping 1
Report 1 record twice 6
AND query 4
Fill out report based on rank from query 1
Report with no data 3

Back
Top