Disabling (visible) the text box

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

Guest

I have a report in which it lists the project names, which grouped in by its
project types, which is then group by its core business. So this is how my
report looks like

~Core Business Header~
[Core Business]
~Project Type Header~
[Project Type]
~Project Name Header~
[Project Name]

My core business consists of only assurance and advisory types. I was
wondering if there was a way disabling the project types for only advisory
(core businesses), but displaying the project types for assurance (core
businesses).

Thanks to those who can help.
 
tanhus said:
I have a report in which it lists the project names, which grouped in by its
project types, which is then group by its core business. So this is how my
report looks like

~Core Business Header~
[Core Business]
~Project Type Header~
[Project Type]
~Project Name Header~
[Project Name]

My core business consists of only assurance and advisory types. I was
wondering if there was a way disabling the project types for only advisory
(core businesses), but displaying the project types for assurance (core
businesses).


You could use the project type header section's Format event
to make it invisible when the core business is advisory:

Me.Section(7).Visible = (Me.[Core Business] <> "Advisory")
 

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

Back
Top