I'm having a heck of a time with using the "visible" parameter.
I have a report band called "Include". It's based on a True/False field called [Include]. I'm trying to turn TEXT on/off based on this value. From what I've read, I think I need to modify the report footer band ("Include") and put in the following
OnFormat:
MS-Access doesn't like that. Any idea what I'm doing wrong?
mike
I have a report band called "Include". It's based on a True/False field called [Include]. I'm trying to turn TEXT on/off based on this value. From what I've read, I think I need to modify the report footer band ("Include") and put in the following
OnFormat:
Code:
= Iif( [Include]= true,
me![Label1].visible = true,
me![Label1].visible = false)
MS-Access doesn't like that. Any idea what I'm doing wrong?
mike