Results 1 to 3 of 3

Thread: Access Report

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    May 2000
    Location
    London Occupation: Desktop Developer
    Posts
    141

    Access Report

    I am trying to interrogate each reocrd for the source of a report and make certain controls in the detail section appear or disappear depending on a certain value.

    Can anyone help

    Thanks in advance

  2. #2
    Your Ad Here! Edneeis's Avatar
    Join Date
    Feb 2000
    Location
    Moreno Valley, CA (SoCal)
    Posts
    7,339
    In an Access Report you can put a formula in the control Source prop of a textbox. Like this will only show the textbox if the contents of another textbox is not blank: =IIf([txtIns]<>"","Insurance Deductions","") txtIns is the textbox that displays the data and this code is the control source of the accompanying label. Here is the control source for txtIns: =IIf(Sum([InsDed])<>0,Max([InsDed]),"") InsDed is the field that it is checking. I hope that helps even though I didn't explain it very well.
    Last edited by Edneeis; Jun 15th, 2001 at 10:42 AM.

  3. #3

    Thread Starter
    Addicted Member
    Join Date
    May 2000
    Location
    London Occupation: Desktop Developer
    Posts
    141

    Report

    Have used the Detail_Format to turn things on and off seems to work,

    Thanks for the help though, will turn to this if I find any issues with my method.

    R

Posting Permissions

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



Click Here to Expand Forum to Full Width