PC Review


Reply
Thread Tools Rate Thread

Blank fields in reports

 
 
=?Utf-8?B?S2F0aWU=?=
Guest
Posts: n/a
 
      24th Jan 2006
Is there a way not to print fields in reports that do not have any data?
I've developed a form with checkboxes where the user either checks the box
for "yes" or leaves it blank for "no". Is there a way to print only the
boxes that contain a check box on my report? I don't want to see the blank
records?

Thank you.
 
Reply With Quote
 
 
 
 
SusanV
Guest
Posts: n/a
 
      24th Jan 2006
In the reports details section's format event:
if Me.Checkbox = True
Me.Checkbox.Visible = True
Else
Me.Checkbox.Visible = False
End If
--
hth,
SusanV


"Katie" <(E-Mail Removed)> wrote in message
news:F0283077-7387-40D1-9F2F-(E-Mail Removed)...
> Is there a way not to print fields in reports that do not have any data?
> I've developed a form with checkboxes where the user either checks the box
> for "yes" or leaves it blank for "no". Is there a way to print only the
> boxes that contain a check box on my report? I don't want to see the
> blank
> records?
>
> Thank you.



 
Reply With Quote
 
SusanV
Guest
Posts: n/a
 
      24th Jan 2006
Oops forgot the "Then":

if Me.Checkbox = True Then
Me.Checkbox.Visible = True
Else
Me.Checkbox.Visible = False
End If



"SusanV" <(E-Mail Removed)> wrote in message
news:u%(E-Mail Removed)...
> In the reports details section's format event:
> if Me.Checkbox = True
> Me.Checkbox.Visible = True
> Else
> Me.Checkbox.Visible = False
> End If
> --
> hth,
> SusanV
>
>
> "Katie" <(E-Mail Removed)> wrote in message
> news:F0283077-7387-40D1-9F2F-(E-Mail Removed)...
>> Is there a way not to print fields in reports that do not have any data?
>> I've developed a form with checkboxes where the user either checks the
>> box
>> for "yes" or leaves it blank for "no". Is there a way to print only the
>> boxes that contain a check box on my report? I don't want to see the
>> blank
>> records?
>>
>> Thank you.

>
>



 
Reply With Quote
 
=?Utf-8?B?S2F0aWU=?=
Guest
Posts: n/a
 
      24th Jan 2006
Perfect! This is exactly what I was looking for. Thank you.

"SusanV" wrote:

> In the reports details section's format event:
> if Me.Checkbox = True
> Me.Checkbox.Visible = True
> Else
> Me.Checkbox.Visible = False
> End If
> --
> hth,
> SusanV
>
>
> "Katie" <(E-Mail Removed)> wrote in message
> news:F0283077-7387-40D1-9F2F-(E-Mail Removed)...
> > Is there a way not to print fields in reports that do not have any data?
> > I've developed a form with checkboxes where the user either checks the box
> > for "yes" or leaves it blank for "no". Is there a way to print only the
> > boxes that contain a check box on my report? I don't want to see the
> > blank
> > records?
> >
> > Thank you.

>
>
>

 
Reply With Quote
 
SusanV
Guest
Posts: n/a
 
      24th Jan 2006
Glad to help when I can!

;-)


"Katie" <(E-Mail Removed)> wrote in message
news:122A7B6A-1F78-4B07-90F8-(E-Mail Removed)...
> Perfect! This is exactly what I was looking for. Thank you.
>
> "SusanV" wrote:
>
>> In the reports details section's format event:
>> if Me.Checkbox = True
>> Me.Checkbox.Visible = True
>> Else
>> Me.Checkbox.Visible = False
>> End If
>> --
>> hth,
>> SusanV
>>
>>
>> "Katie" <(E-Mail Removed)> wrote in message
>> news:F0283077-7387-40D1-9F2F-(E-Mail Removed)...
>> > Is there a way not to print fields in reports that do not have any
>> > data?
>> > I've developed a form with checkboxes where the user either checks the
>> > box
>> > for "yes" or leaves it blank for "no". Is there a way to print only
>> > the
>> > boxes that contain a check box on my report? I don't want to see the
>> > blank
>> > records?
>> >
>> > Thank you.

>>
>>
>>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Reports..blank fields =?Utf-8?B?QW5uYQ==?= Microsoft Access Reports 2 12th Jan 2011 09:52 AM
Eliminating Blank Fields from reports Steve Microsoft Access Reports 1 20th Dec 2009 02:48 PM
Excluding blank fields in reports Jenn Microsoft Access Reports 1 21st Jan 2008 04:22 PM
HIDING BLANK FIELDS IN REPORTS executive514 Microsoft Access Reports 1 5th Dec 2007 07:09 PM
Blank Fields in reports Jean Microsoft Access Reports 5 1st Apr 2005 01:15 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:18 AM.