Results 1 to 7 of 7

Thread: Make column Invisble-Report-Access 2003

  1. #1
    Join Date
    Aug 2008
    Posts
    29

    Lightbulb Make column Invisble-Report-Access 2003

    Hi,
    I have a yes/no setting in the tables for the preferred column. I have a Query1 to get the data.
    The Report derives data from the query1. Presently the report displays the checkbox irrespective of whether the value is true or false. How to ensure that the check box is displayed only if the column value is True/Yes else it is not displayed.
    I've attached the sample db for immediate reference.
    Thanks in advance.
    Attached Files Attached Files
    Last edited by Ignorant; 03-06-2009 at 03:59 AM. Reason: Title correction

  2. #2
    Join Date
    Mar 2006
    Location
    Oklahoma City, OK
    Posts
    184
    Try this:

    Code:
    Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
    
    Me.preferred.Visible = Me.preferred
    
    End Sub
    Boyd Trimmell aka HiTech Coach
    Microsoft MVP - Access Expert
    [SIGPIC][/SIGPIC]
    Office Programming 25+ years as a Software Developer specializing in:
    Business Process Management
    Accounting/Inventory Control
    Customer Relations Management (CRM)
    Electronic Data Interchange (EDI)

  3. #3
    Join Date
    Aug 2008
    Posts
    29

    Talking

    you are great man
    but i didn't get the
    Code:
    .Invisble
    in the intellisense. Is it somekind of invisible property?

  4. #4
    Join Date
    Aug 2008
    Posts
    29
    How would I show my appreciation for helping me.
    Is there some kind of Add Reputation etc...

  5. #5
    Join Date
    Mar 2006
    Location
    Oklahoma City, OK
    Posts
    184
    Quote Originally Posted by Ignorant View Post
    How would I show my appreciation for helping me.
    Is there some kind of Add Reputation etc...
    Please pass it on by doing good deed for someone else.
    Boyd Trimmell aka HiTech Coach
    Microsoft MVP - Access Expert
    [SIGPIC][/SIGPIC]
    Office Programming 25+ years as a Software Developer specializing in:
    Business Process Management
    Accounting/Inventory Control
    Customer Relations Management (CRM)
    Electronic Data Interchange (EDI)

  6. #6
    Join Date
    Aug 2008
    Posts
    29

    Thumbs up

    Quote Originally Posted by HiTechCoach
    Please pass it on by doing good deed for someone else.
    so magnanimous of you
    but do you mean there is no system of giving Reputation points in this forums.

  7. #7
    Join Date
    Mar 2006
    Location
    Oklahoma City, OK
    Posts
    184
    There is not a way that I know of in this forum.
    Boyd Trimmell aka HiTech Coach
    Microsoft MVP - Access Expert
    [SIGPIC][/SIGPIC]
    Office Programming 25+ years as a Software Developer specializing in:
    Business Process Management
    Accounting/Inventory Control
    Customer Relations Management (CRM)
    Electronic Data Interchange (EDI)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •