|
-
Jun 15th, 2001, 09:44 AM
#1
Thread Starter
Addicted Member
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
-
Jun 15th, 2001, 10:38 AM
#2
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.
-
Jun 15th, 2001, 10:51 AM
#3
Thread Starter
Addicted Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|