1ed7f Alternate colors in report for multicolumn report
Sign Up |  Live StatsLive Stats    Articles 37,321| Comments 177,192| Members 19,408, Newest ssarabjeet61| Online 505
Home Contact
 (Forgotten?): 
    Sikhism
    For best SPN experience, use Firefox Internet Browser!


                                                                   Your Banner Here!    




Sikh Philosophy Network » Sikh Philosophy Network » Current News » Information Technology » Alternate colors in report for multicolumn report

Alternate colors in report for multicolumn report

Our Donation Goal : Why Donate? : Donate Today! : Donate Anonymously (ਗੁਪਤ) : Our Family of Supporters
Goal this month: 500 USD, Received: 115 USD (23%)
Please Donate...
     
Related Topics...
Thread Thread Starter Forum Replies Last Post
SQL qry Report?? lmv Information Technology 0 28-Jul-2006 08:33 AM
Report Question - Using Report to Calculate Adam Charlton Information Technology 3 28-Jul-2006 08:31 AM
Alternate colors in report for multicolumn report millie.patel@gmail.com Information Technology 0 28-Jul-2006 08:19 AM
Use VBA code to choose slice colors on a pie chart report John Barry Information Technology 1 28-Jul-2006 08:04 AM
Why? about the report Martin Information Technology 0 03-Nov-2005 13:26 PM


Tags
alternate, colors, report, multicolumn
Reply Post New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!
  #1 (permalink)  
Old 28-Jul-2006, 08:19 AM
millie.patel@gmail.com's Avatar millie.patel@gmail.com
Guest
 
Posts: n/a
   
   
Alternate colors in report for multicolumn report

  Donate Today!   Email to Friend  Tell a Friend   Show Printable Version  Print   Contact sikhphilosophy.net Administraion for any Suggestions, Ideas, Feedback.  Feedback  

Register to Remove Advertisements
Hi All,

I have a report that has a subreport with 4 columns (Level 1, 2, 3, 4).

I want the report to alternate colors every row; however, each row may
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/information-technology/11318-alternate-colors-in-report-multicolumn-report.html
have different size values in the columns --
for example:


Level 1 Level 2 Level 3 Level 4
x x x xxx
xxx xx xxx


that is one row -- i need it to shade the entire row grey -- and the
height of the shading to be as long as the Level 4 text.


Any ideas/suggestions?


Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11318
Thanks,


Millie



Got anything to share on This Topic? Why not share your immediate thoughts/reaction with us! Login Now! or Sign Up Today! to share your views... Gurfateh!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 28-Jul-2006, 08:20 AM
SusanV's Avatar SusanV
Guest
 
Posts: n/a
   
   
Re: Alternate colors in report for multicolumn report

Regardless of data - rows are rows:
http://www.codewidgets.com/product.aspx?key=35
--
hth,
SusanV


wrote in message
news:1150205199.111523.199390@i40g2000cwc.googlegr oups.com...
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11318
> Hi All,
>
> I have a report that has a subreport with 4 columns (Level 1, 2, 3, 4).
>
> I want the report to alternate colors every row; however, each row may
> have different size values in the columns --
> for example:
>
>
> Level 1 Level 2 Level 3 Level 4
> x x x xxx
> xxx xx xxx
>
>
> that is one row -- i need it to shade the entire row grey -- and the
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11318
> height of the shading to be as long as the Level 4 text.
>
>
> Any ideas/suggestions?
>
>
> Thanks,
>
>
> Millie
>



Reply With Quote
  #3 (permalink)  
Old 28-Jul-2006, 08:20 AM
millie.patel@gmail.com's Avatar millie.patel@gmail.com
Guest
 
Posts: n/a
   
   
Re: Alternate colors in report for multicolumn report

When I do that, it highlights just the text in the row -- so if text is
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11318
longer in one column, it is highlighted more --

The entire row is not highlighted -- only the text


SusanV wrote:
> Regardless of data - rows are rows:
> http://www.codewidgets.com/product.aspx?key=35
> --
> hth,
> SusanV
>
>
> wrote in message
> news:1150205199.111523.199390@i40g2000cwc.googlegr oups.com...
> > Hi All,
> >
> > I have a report that has a subreport with 4 columns (Level 1, 2, 3, 4).
> >
> > I want the report to alternate colors every row; however, each row may
> > have different size values in the columns --
> > for example:
> >
> >
> > Level 1 Level 2 Level 3 Level 4
> > x x x xxx
> > xxx xx xxx
> >
> >
> > that is one row -- i need it to shade the entire row grey -- and the
> > height of the shading to be as long as the Level 4 text.
> >
> >
> > Any ideas/suggestions?
> >
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11318
> >
> > Thanks,
> >
> >
> > Millie
> >


Reply With Quote
  #4 (permalink)  
Old 28-Jul-2006, 08:20 AM
SusanV's Avatar SusanV
Guest
 
Posts: n/a
   
   
Re: Alternate colors in report for multicolumn report

Huh? This should set the background color of the row - not any text
formatting such as foreground color or bold or any of that. I use it to
alternate grey and white is several reports as follows:

'===========
Private m_RowCount As Long
'===========
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
m_RowCount = m_RowCount + 1
If m_RowCount / 2 = CLng(m_RowCount / 2) Then
Me.Detail.BackColor = 12632256 'Set to grey
Else
Me.Detail.BackColor = 16777215 'This is the white row
End If
End Sub
'===========


Can you post the entire Detail_Format sub?

SusanV

wrote in message
news:1150290816.465402.192370@y41g2000cwy.googlegr oups.com...
> When I do that, it highlights just the text in the row -- so if text is
> longer in one column, it is highlighted more --
>
> The entire row is not highlighted -- only the text
>
>
> SusanV wrote:
>> Regardless of data - rows are rows:
>> http://www.codewidgets.com/product.aspx?key=35
>> --
>> hth,
>> SusanV
>>
>>
>> wrote in message
>> news:1150205199.111523.199390@i40g2000cwc.googlegr oups.com...
>> > Hi All,
>> >
>> > I have a report that has a subreport with 4 columns (Level 1, 2, 3, 4).
>> >
>> > I want the report to alternate colors every row; however, each row may
>> > have different size values in the columns --
>> > for example:
>> >
>> >
>> > Level 1 Level 2 Level 3 Level 4
>> > x x x xxx
>> > xxx xx xxx
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11318
>> >
>> >
>> > that is one row -- i need it to shade the entire row grey -- and the
>> > height of the shading to be as long as the Level 4 text.
>> >
>> >
>> > Any ideas/suggestions?
>> >
>> >
>> > Thanks,
>> >
>> >
>> > Millie
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11318
>> >

>



Reply With Quote
  #5 (permalink)  
Old 28-Jul-2006, 08:20 AM
millie.patel@gmail.com's Avatar millie.patel@gmail.com
Guest
 
Posts: n/a
   
   
Re: Alternate colors in report for multicolumn report

Option Compare Database
Private shadeNextRow As Boolean
Private lastProgression As String
Private lastProgressionRow As String
Const shadedColor = 16770273
Const normalColor = 16777215
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If lastProgression <> Me!Progression Or lastProgressionRow <>
Me!ProgressionRow Then
shadeNextRow = Not shadeNextRow
lastProgression = Me!Progression
lastProgressionRow = Me!ProgressionRow
End If
If shadeNextRow Then
Me.Section(acDetail).BackColor = shadedColor
Else
Me.Section(acDetail).BackColor = normalColor
End If
If Me!CapabilityColor = "red" Then
Me!Capability.ForeColor = RGB(255, 0, 0)
ElseIf Me!CapabilityColor = "orange" Then
Me! Capability.ForeColor = RGB(255, 140, 0)
ElseIf Me!CapabilityColor = "green" Then
Me! Capability.ForeColor = RGB(0, 100, 0)
ElseIf Me!CapabilityColor = "purple" Then
Me!Capability.ForeColor = RGB(148, 0, 211)
ElseIf Me! CapabilityColor = "blue" Then
Me!Capability.ForeColor = RGB(0, 0, 255)
End If
End Sub

SusanV wrote:
> Huh? This should set the background color of the row - not any text
> formatting such as foreground color or bold or any of that. I use it to
> alternate grey and white is several reports as follows:
>
> '===========
> Private m_RowCount As Long
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11318
> '===========
> Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
> m_RowCount = m_RowCount + 1
> If m_RowCount / 2 = CLng(m_RowCount / 2) Then
> Me.Detail.BackColor = 12632256 'Set to grey
> Else
> Me.Detail.BackColor = 16777215 'This is the white row
> End If
> End Sub
> '===========
>
>
> Can you post the entire Detail_Format sub?
>
> SusanV
>
> wrote in message
> news:1150290816.465402.192370@y41g2000cwy.googlegr oups.com...
> > When I do that, it highlights just the text in the row -- so if text is
> > longer in one column, it is highlighted more --
> >
> > The entire row is not highlighted -- only the text
> >
> >
> > SusanV wrote:
> >> Regardless of data - rows are rows:
> >> http://www.codewidgets.com/product.aspx?key=35
> >> --
> >> hth,
> >> SusanV
> >>
> >>
> >> wrote in message
> >> news:1150205199.111523.199390@i40g2000cwc.googlegr oups.com...
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11318
> >> > Hi All,
> >> >
> >> > I have a report that has a subreport with 4 columns (Level 1, 2, 3, 4).
> >> >
> >> > I want the report to alternate colors every row; however, each row may
> >> > have different size values in the columns --
> >> > for example:
> >> >
> >> >
> >> > Level 1 Level 2 Level 3 Level 4
> >> > x x x xxx
> >> > xxx xx xxx
> >> >
> >> >
> >> > that is one row -- i need it to shade the entire row grey -- and the
> >> > height of the shading to be as long as the Level 4 text.
> >> >
> >> >
> >> > Any ideas/suggestions?
> >> >
> >> >
> >> > Thanks,
> >> >
> >> >
> >> > Millie
> >> >

> >


Reply With Quote
  #6 (permalink)  
Old 28-Jul-2006, 08:20 AM
millie.patel@gmail.com's Avatar millie.patel@gmail.com
Guest
 
Posts: n/a
   
   
Re: Alternate colors in report for multicolumn report

using the code you provided and using this code that i just pasted, i
get the same results


millie.patel@gmail.com wrote:
> Option Compare Database
> Private shadeNextRow As Boolean
> Private lastProgression As String
> Private lastProgressionRow As String
> Const shadedColor = 16770273
> Const normalColor = 16777215
> Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
> If lastProgression <> Me!Progression Or lastProgressionRow <>
> Me!ProgressionRow Then
> shadeNextRow = Not shadeNextRow
> lastProgression = Me!Progression
> lastProgressionRow = Me!ProgressionRow
> End If
> If shadeNextRow Then
> Me.Section(acDetail).BackColor = shadedColor
> Else
> Me.Section(acDetail).BackColor = normalColor
> End If
> If Me!CapabilityColor = "red" Then
> Me!Capability.ForeColor = RGB(255, 0, 0)
> ElseIf Me!CapabilityColor = "orange" Then
> Me! Capability.ForeColor = RGB(255, 140, 0)
> ElseIf Me!CapabilityColor = "green" Then
> Me! Capability.ForeColor = RGB(0, 100, 0)
> ElseIf Me!CapabilityColor = "purple" Then
> Me!Capability.ForeColor = RGB(148, 0, 211)
> ElseIf Me! CapabilityColor = "blue" Then
> Me!Capability.ForeColor = RGB(0, 0, 255)
> End If
> End Sub
>
> SusanV wrote:
> > Huh? This should set the background color of the row - not any text
> > formatting such as foreground color or bold or any of that. I use it to
> > alternate grey and white is several reports as follows:
> >
> > '===========
> > Private m_RowCount As Long
> > '===========
> > Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
> > m_RowCount = m_RowCount + 1
> > If m_RowCount / 2 = CLng(m_RowCount / 2) Then
> > Me.Detail.BackColor = 12632256 'Set to grey
> > Else
> > Me.Detail.BackColor = 16777215 'This is the white row
> > End If
> > End Sub
> > '===========
> >
> >
> > Can you post the entire Detail_Format sub?
> >
> > SusanV
> >
> > wrote in message
> > news:1150290816.465402.192370@y41g2000cwy.googlegr oups.com...
> > > When I do that, it highlights just the text in the row -- so if text is
> > > longer in one column, it is highlighted more --
> > >
> > > The entire row is not highlighted -- only the text
> > >
> > >
> > > SusanV wrote:
> > >> Regardless of data - rows are rows:
> > >> http://www.codewidgets.com/product.aspx?key=35
> > >> --
> > >> hth,
> > >> SusanV
> > >>
> > >>
> > >> wrote in message
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11318
> > >> news:1150205199.111523.199390@i40g2000cwc.googlegr oups.com...
> > >> > Hi All,
> > >> >
> > >> > I have a report that has a subreport with 4 columns (Level 1, 2, 3, 4).
> > >> >
> > >> > I want the report to alternate colors every row; however, each row may
> > >> > have different size values in the columns --
> > >> > for example:
> > >> >
> > >> >
> > >> > Level 1 Level 2 Level 3 Level 4
> > >> > x x x xxx
> > >> > xxx xx xxx
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11318
> > >> >
> > >> >
> > >> > that is one row -- i need it to shade the entire row grey -- and the
> > >> > height of the shading to be as long as the Level 4 text.
> > >> >
> > >> >
> > >> > Any ideas/suggestions?
> > >> >
> > >> >
> > >> > Thanks,
> > >> >
> > >> >
> > >> > Millie
> > >> >
> > >


Reply With Quote
  #7 (permalink)  
Old 28-Jul-2006, 08:20 AM
SusanV's Avatar SusanV
Guest
 
Posts: n/a
   
   
Re: Alternate colors in report for multicolumn report

You copied the exact code I posted and you're getting the DATA format
changing?

wrote in message
news:1150303334.518662.84440@y41g2000cwy.googlegro ups.com...
> using the code you provided and using this code that i just pasted, i
> get the same results
>
>
> millie.patel@gmail.com wrote:
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11318
>> Option Compare Database
>> Private shadeNextRow As Boolean
>> Private lastProgression As String
>> Private lastProgressionRow As String
>> Const shadedColor = 16770273
>> Const normalColor = 16777215
>> Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
>> If lastProgression <> Me!Progression Or lastProgressionRow <>
>> Me!ProgressionRow Then
>> shadeNextRow = Not shadeNextRow
>> lastProgression = Me!Progression
>> lastProgressionRow = Me!ProgressionRow
>> End If
>> If shadeNextRow Then
>> Me.Section(acDetail).BackColor = shadedColor
>> Else
>> Me.Section(acDetail).BackColor = normalColor
>> End If
>> If Me!CapabilityColor = "red" Then
>> Me!Capability.ForeColor = RGB(255, 0, 0)
>> ElseIf Me!CapabilityColor = "orange" Then
>> Me! Capability.ForeColor = RGB(255, 140, 0)
>> ElseIf Me!CapabilityColor = "green" Then
>> Me! Capability.ForeColor = RGB(0, 100, 0)
>> ElseIf Me!CapabilityColor = "purple" Then
>> Me!Capability.ForeColor = RGB(148, 0, 211)
>> ElseIf Me! CapabilityColor = "blue" Then
>> Me!Capability.ForeColor = RGB(0, 0, 255)
>> End If
>> End Sub
>>
>> SusanV wrote:
>> > Huh? This should set the background color of the row - not any text
>> > formatting such as foreground color or bold or any of that. I use it to
>> > alternate grey and white is several reports as follows:
>> >
>> > '===========
>> > Private m_RowCount As Long
>> > '===========
>> > Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
>> > m_RowCount = m_RowCount + 1
>> > If m_RowCount / 2 = CLng(m_RowCount / 2) Then
>> > Me.Detail.BackColor = 12632256 'Set to grey
>> > Else
>> > Me.Detail.BackColor = 16777215 'This is the white row
>> > End If
>> > End Sub
>> > '===========
>> >
>> >
>> > Can you post the entire Detail_Format sub?
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11318
>> >
>> > SusanV
>> >
>> > wrote in message
>> > news:1150290816.465402.192370@y41g2000cwy.googlegr oups.com...
>> > > When I do that, it highlights just the text in the row -- so if text
>> > > is
>> > > longer in one column, it is highlighted more --
>> > >
>> > > The entire row is not highlighted -- only the text
>> > >
>> > >
>> > > SusanV wrote:
>> > >> Regardless of data - rows are rows:
>> > >> http://www.codewidgets.com/product.aspx?key=35
>> > >> --
>> > >> hth,
>> > >> SusanV
>> > >>
>> > >>
>> > >> wrote in message
>> > >> news:1150205199.111523.199390@i40g2000cwc.googlegr oups.com...
>> > >> > Hi All,
>> > >> >
>> > >> > I have a report that has a subreport with 4 columns (Level 1, 2,
>> > >> > 3, 4).
>> > >> >
>> > >> > I want the report to alternate colors every row; however, each row
>> > >> > may
>> > >> > have different size values in the columns --
>> > >> > for example:
>> > >> >
>> > >> >
>> > >> > Level 1 Level 2 Level 3 Level 4
>> > >> > x x x xxx
>> > >> > xxx xx xxx
>> > >> >
>> > >> >
>> > >> > that is one row -- i need it to shade the entire row grey -- and
>> > >> > the
>> > >> > height of the shading to be as long as the Level 4 text.
>> > >> >
>> > >> >
>> > >> > Any ideas/suggestions?
>> > >> >
>> > >> >
>> > >> > Thanks,
>> > >> >
>> > >> >
>> > >> > Millie
>> > >> >
>> > >

>



Reply With Quote
  #8 (permalink)  
Old 28-Jul-2006, 08:20 AM
millie.patel@gmail.com's Avatar millie.patel@gmail.com
Guest
 
Posts: n/a
   
   
Re: Alternate colors in report for multicolumn report

yup

i still get the data being highlighted - not the entire row
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11318

SusanV wrote:
> You copied the exact code I posted and you're getting the DATA format
> changing?
>
> wrote in message
> news:1150303334.518662.84440@y41g2000cwy.googlegro ups.com...
> > using the code you provided and using this code that i just pasted, i
> > get the same results
> >
> >
> > millie.patel@gmail.com wrote:
> >> Option Compare Database
> >> Private shadeNextRow As Boolean
> >> Private lastProgression As String
> >> Private lastProgressionRow As String
> >> Const shadedColor = 16770273
> >> Const normalColor = 16777215
> >> Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
> >> If lastProgression <> Me!Progression Or lastProgressionRow <>
> >> Me!ProgressionRow Then
> >> shadeNextRow = Not shadeNextRow
> >> lastProgression = Me!Progression
> >> lastProgressionRow = Me!ProgressionRow
> >> End If
> >> If shadeNextRow Then
> >> Me.Section(acDetail).BackColor = shadedColor
> >> Else
> >> Me.Section(acDetail).BackColor = normalColor
> >> End If
> >> If Me!CapabilityColor = "red" Then
> >> Me!Capability.ForeColor = RGB(255, 0, 0)
> >> ElseIf Me!CapabilityColor = "orange" Then
> >> Me! Capability.ForeColor = RGB(255, 140, 0)
> >> ElseIf Me!CapabilityColor = "green" Then
> >> Me! Capability.ForeColor = RGB(0, 100, 0)
> >> ElseIf Me!CapabilityColor = "purple" Then
> >> Me!Capability.ForeColor = RGB(148, 0, 211)
> >> ElseIf Me! CapabilityColor = "blue" Then
> >> Me!Capability.ForeColor = RGB(0, 0, 255)
> >> End If
> >> End Sub
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11318
> >>
> >> SusanV wrote:
> >> > Huh? This should set the background color of the row - not any text
> >> > formatting such as foreground color or bold or any of that. I use it to
> >> > alternate grey and white is several reports as follows:
> >> >
> >> > '===========
> >> > Private m_RowCount As Long
> >> > '===========
> >> > Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
> >> > m_RowCount = m_RowCount + 1
> >> > If m_RowCount / 2 = CLng(m_RowCount / 2) Then
> >> > Me.Detail.BackColor = 12632256 'Set to grey
> >> > Else
> >> > Me.Detail.BackColor = 16777215 'This is the white row
> >> > End If
> >> > End Sub
> >> > '===========
> >> >
> >> >
> >> > Can you post the entire Detail_Format sub?
> >> >
> >> > SusanV
> >> >
> >> > wrote in message
> >> > news:1150290816.465402.192370@y41g2000cwy.googlegr oups.com...
> >> > > When I do that, it highlights just the text in the row -- so if text
> >> > > is
> >> > > longer in one column, it is highlighted more --
> >> > >
> >> > > The entire row is not highlighted -- only the text
> >> > >
> >> > >
> >> > > SusanV wrote:
> >> > >> Regardless of data - rows are rows:
> >> > >> http://www.codewidgets.com/product.aspx?key=35
> >> > >> --
> >> > >> hth,
> >> > >> SusanV
> >> > >>
> >> > >>
> >> > >> wrote in message
> >> > >> news:1150205199.111523.199390@i40g2000cwc.googlegr oups.com...
> >> > >> > Hi All,
> >> > >> >
> >> > >> > I have a report that has a subreport with 4 columns (Level 1, 2,
> >> > >> > 3, 4).
> >> > >> >
> >> > >> > I want the report to alternate colors every row; however, each row
> >> > >> > may
> >> > >> > have different size values in the columns --
> >> > >> > for example:
> >> > >> >
> >> > >> >
> >> > >> > Level 1 Level 2 Level 3 Level 4
> >> > >> > x x x xxx
> >> > >> > xxx xx xxx
> >> > >> >
> >> > >> >
> >> > >> > that is one row -- i need it to shade the entire row grey -- and
> >> > >> > the
> >> > >> > height of the shading to be as long as the Level 4 text.
> >> > >> >
> >> > >> >
> >> > >> > Any ideas/suggestions?
> >> > >> >
> >> > >> >
> >> > >> > Thanks,
> >> > >> >
> >> > >> >
> >> > >> > Millie
> >> > >> >
> >> > >

> >


Reply With Quote
  #9 (permalink)  
Old 28-Jul-2006, 08:21 AM
Rick Brandt's Avatar Rick Brandt
Guest
 
Posts: n/a
   
   
Re: Alternate colors in report for multicolumn report

  Donate Today!  
millie.patel@gmail.com wrote:
> yup
>
> i still get the data being highlighted - not the entire row


Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11318
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11318
When you state that you have "multiple columns of data" do you mean multiple
fields arranged in columns or do you mean that you are using the
Multi-column options in Page Setup of the report?

Using the "newspaper columns" option in page setup will produce a different
effect because the detail section is not only repeated in horizontal bands
but also snaked into columns and the background WILL have some margin
separation between those columns.


--
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com



Reply With Quote
   Click Here to Donate Now!

Support Us!
Become a Promoter!
Gurfateh ji, you can become a SPN Promoter by Donating as little as $10 each month. With limited resources & high operational costs, your donations make it possible for us to deliver a quality website and spread the teachings of the Sri Guru Granth Sahib Ji, to serve & uplift humanity. Every contribution counts. Donate Generously. Gurfateh!
ReplyPost New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!

Bookmarks


(View-All Members who have read this thread : 0
There are no names to display.

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Tools Search
Search:

Advanced Search
Display Modes

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 On
Trackbacks are On
Pingbacks are On
Refbacks are On

» Active Discussions
SSGS with English...
Today 07:52 AM
7 Replies, 65 Views
Losing My Religion: Why...
By Ishna
Today 04:40 AM
10 Replies, 203 Views
Keeping Amrit Vela
By Alisa
Today 02:39 AM
5 Replies, 781 Views
Rozana Reports (ਪੰਜਾਬੀ...
Today 01:44 AM
310 Replies, 7,517 Views
Sikh Spokesman (ਪੰਜਾਬੀ...
Today 01:30 AM
174 Replies, 4,429 Views
Dalai Lama’s Lessons for...
Today 00:11 AM
0 Replies, 35 Views
30 Day Amrit Vela -...
Yesterday 23:49 PM
45 Replies, 628 Views
How does Sikhi help you...
Yesterday 22:59 PM
19 Replies, 817 Views
What Do You Think of...
Yesterday 22:56 PM
39 Replies, 705 Views
How Religions Change...
Yesterday 19:33 PM
0 Replies, 68 Views
Do you believe in...
Yesterday 12:00 PM
184 Replies, 3,899 Views
Thought of the Moment!
Yesterday 10:07 AM
109 Replies, 5,151 Views
Amrit
Yesterday 09:17 AM
5 Replies, 364 Views
What I believe Hukam to...
Yesterday 03:15 AM
13 Replies, 179 Views
Should SPN Keep the...
Yesterday 02:02 AM
19 Replies, 668 Views
» Books You Should Read...
Powered by vBadvanced CMPS v3.2.3
All times are GMT +6.5. The time now is 09:36 AM.
Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2013, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2 Copyright © 2004-12, All Rights Reserved. Sikh Philosophy Network


Page generated in 0.63612 seconds with 32 queries
0