PC Review


Reply
Thread Tools Rate Thread

Adding every sixth value

 
 
KLock
Guest
Posts: n/a
 
      23rd Jan 2008
I have to add every sixth value in a column summed over 52 value. Is there
an equation to do this so I don't have to input each cell.

Example

Column 1 2 3 4 5 1 2 3 4 5

So the equation I need is Column (1+1), Column (2+2), so on
 
Reply With Quote
 
 
 
 
RagDyeR
Guest
Posts: n/a
 
      23rd Jan 2008
If you went from Column A to Column IV, *only* the "first column series"
would contain 52 values.
All the rest would have 51.

That being the case, this formula will total column A to IV on Row10,
starting in A:

=SUMPRODUCT((MOD(COLUMN(10:10)+4,5)=0)*(10:10))

Starting in B:
=SUMPRODUCT((MOD(COLUMN(10:10)+3,5)=0)*(10:10))

Starting in C:
=SUMPRODUCT((MOD(COLUMN(10:10)+2,5)=0)*(10:10))

Starting in D:
=SUMPRODUCT((MOD(COLUMN(10:10)+1,5)=0)*(10:10))

Starting in E:
=SUMPRODUCT((MOD(COLUMN(10:10),5)=0)*(10:10))


--

HTH,

RD
=====================================================
Please keep all correspondence within the Group, so all may benefit!
=====================================================


"KLock" <(E-Mail Removed)> wrote in message
news:7EFEEDB7-28C7-4B4F-BEA2-(E-Mail Removed)...
I have to add every sixth value in a column summed over 52 value. Is there
an equation to do this so I don't have to input each cell.

Example

Column 1 2 3 4 5 1 2 3 4 5

So the equation I need is Column (1+1), Column (2+2), so on


 
Reply With Quote
 
KLock
Guest
Posts: n/a
 
      23rd Jan 2008
Ok that probably will work the only problems are

I need to start with column B, since column A is the header, and the
equation I am inputting is at the end of the row, so I don't want to add
these cells.


"RagDyeR" wrote:

> If you went from Column A to Column IV, *only* the "first column series"
> would contain 52 values.
> All the rest would have 51.
>
> That being the case, this formula will total column A to IV on Row10,
> starting in A:
>
> =SUMPRODUCT((MOD(COLUMN(10:10)+4,5)=0)*(10:10))
>
> Starting in B:
> =SUMPRODUCT((MOD(COLUMN(10:10)+3,5)=0)*(10:10))
>
> Starting in C:
> =SUMPRODUCT((MOD(COLUMN(10:10)+2,5)=0)*(10:10))
>
> Starting in D:
> =SUMPRODUCT((MOD(COLUMN(10:10)+1,5)=0)*(10:10))
>
> Starting in E:
> =SUMPRODUCT((MOD(COLUMN(10:10),5)=0)*(10:10))
>
>
> --
>
> HTH,
>
> RD
> =====================================================
> Please keep all correspondence within the Group, so all may benefit!
> =====================================================
>
>
> "KLock" <(E-Mail Removed)> wrote in message
> news:7EFEEDB7-28C7-4B4F-BEA2-(E-Mail Removed)...
> I have to add every sixth value in a column summed over 52 value. Is there
> an equation to do this so I don't have to input each cell.
>
> Example
>
> Column 1 2 3 4 5 1 2 3 4 5
>
> So the equation I need is Column (1+1), Column (2+2), so on
>
>
>

 
Reply With Quote
 
KLock
Guest
Posts: n/a
 
      23rd Jan 2008
Since Column A has the headers and I inputting the equation in IH9

I changed the equation to
=SUMPRODUCT((MOD(COLUMN(B9:IG9)+4,5)=0)*(B9:IG9))
but the calculations are wrong is there anything else I need to change for
this adjustment or is this just the wrong equation for this situation

"KLock" wrote:

> Ok that probably will work the only problems are
>
> I need to start with column B, since column A is the header, and the
> equation I am inputting is at the end of the row, so I don't want to add
> these cells.
>
>
> "RagDyeR" wrote:
>
> > If you went from Column A to Column IV, *only* the "first column series"
> > would contain 52 values.
> > All the rest would have 51.
> >
> > That being the case, this formula will total column A to IV on Row10,
> > starting in A:
> >
> > =SUMPRODUCT((MOD(COLUMN(10:10)+4,5)=0)*(10:10))
> >
> > Starting in B:
> > =SUMPRODUCT((MOD(COLUMN(10:10)+3,5)=0)*(10:10))
> >
> > Starting in C:
> > =SUMPRODUCT((MOD(COLUMN(10:10)+2,5)=0)*(10:10))
> >
> > Starting in D:
> > =SUMPRODUCT((MOD(COLUMN(10:10)+1,5)=0)*(10:10))
> >
> > Starting in E:
> > =SUMPRODUCT((MOD(COLUMN(10:10),5)=0)*(10:10))
> >
> >
> > --
> >
> > HTH,
> >
> > RD
> > =====================================================
> > Please keep all correspondence within the Group, so all may benefit!
> > =====================================================
> >
> >
> > "KLock" <(E-Mail Removed)> wrote in message
> > news:7EFEEDB7-28C7-4B4F-BEA2-(E-Mail Removed)...
> > I have to add every sixth value in a column summed over 52 value. Is there
> > an equation to do this so I don't have to input each cell.
> >
> > Example
> >
> > Column 1 2 3 4 5 1 2 3 4 5
> >
> > So the equation I need is Column (1+1), Column (2+2), so on
> >
> >
> >

 
Reply With Quote
 
RagDyer
Guest
Posts: n/a
 
      23rd Jan 2008
Starting in B:
=SUMPRODUCT((MOD(COLUMN(B9:IG9)+3,5)=0)*(B9:IG9))

Starting in C:
=SUMPRODUCT((MOD(COLUMN(B9:IG9)+2,5)=0)*(B9:IG9))

Starting in D:
=SUMPRODUCT((MOD(COLUMN(B9:IG9)+1,5)=0)*(B9:IG9))

Starting in E:
=SUMPRODUCT((MOD(COLUMN(B9:IG9),5)=0)*(B9:IG9))

Starting in F:
=SUMPRODUCT((MOD(COLUMN(B9:IG9)-1,5)=0)*(B9:IG9))


--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"KLock" <(E-Mail Removed)> wrote in message
news:FBAFAE1E-2D42-4284-9950-(E-Mail Removed)...
> Since Column A has the headers and I inputting the equation in IH9
>
> I changed the equation to
> =SUMPRODUCT((MOD(COLUMN(B9:IG9)+4,5)=0)*(B9:IG9))
> but the calculations are wrong is there anything else I need to change for
> this adjustment or is this just the wrong equation for this situation
>
> "KLock" wrote:
>
>> Ok that probably will work the only problems are
>>
>> I need to start with column B, since column A is the header, and the
>> equation I am inputting is at the end of the row, so I don't want to add
>> these cells.
>>
>>
>> "RagDyeR" wrote:
>>
>> > If you went from Column A to Column IV, *only* the "first column
>> > series"
>> > would contain 52 values.
>> > All the rest would have 51.
>> >
>> > That being the case, this formula will total column A to IV on Row10,
>> > starting in A:
>> >
>> > =SUMPRODUCT((MOD(COLUMN(10:10)+4,5)=0)*(10:10))
>> >
>> > Starting in B:
>> > =SUMPRODUCT((MOD(COLUMN(10:10)+3,5)=0)*(10:10))
>> >
>> > Starting in C:
>> > =SUMPRODUCT((MOD(COLUMN(10:10)+2,5)=0)*(10:10))
>> >
>> > Starting in D:
>> > =SUMPRODUCT((MOD(COLUMN(10:10)+1,5)=0)*(10:10))
>> >
>> > Starting in E:
>> > =SUMPRODUCT((MOD(COLUMN(10:10),5)=0)*(10:10))
>> >
>> >
>> > --
>> >
>> > HTH,
>> >
>> > RD
>> > =====================================================
>> > Please keep all correspondence within the Group, so all may benefit!
>> > =====================================================
>> >
>> >
>> > "KLock" <(E-Mail Removed)> wrote in message
>> > news:7EFEEDB7-28C7-4B4F-BEA2-(E-Mail Removed)...
>> > I have to add every sixth value in a column summed over 52 value. Is
>> > there
>> > an equation to do this so I don't have to input each cell.
>> >
>> > Example
>> >
>> > Column 1 2 3 4 5 1 2 3 4 5
>> >
>> > So the equation I need is Column (1+1), Column (2+2), so on
>> >
>> >
>> >



 
Reply With Quote
 
KLock
Guest
Posts: n/a
 
      23rd Jan 2008
Ok that works thanks for the help

"RagDyer" wrote:

> Starting in B:
> =SUMPRODUCT((MOD(COLUMN(B9:IG9)+3,5)=0)*(B9:IG9))
>
> Starting in C:
> =SUMPRODUCT((MOD(COLUMN(B9:IG9)+2,5)=0)*(B9:IG9))
>
> Starting in D:
> =SUMPRODUCT((MOD(COLUMN(B9:IG9)+1,5)=0)*(B9:IG9))
>
> Starting in E:
> =SUMPRODUCT((MOD(COLUMN(B9:IG9),5)=0)*(B9:IG9))
>
> Starting in F:
> =SUMPRODUCT((MOD(COLUMN(B9:IG9)-1,5)=0)*(B9:IG9))
>
>
> --
> HTH,
>
> RD
>
> ---------------------------------------------------------------------------
> Please keep all correspondence within the NewsGroup, so all may benefit !
> ---------------------------------------------------------------------------
> "KLock" <(E-Mail Removed)> wrote in message
> news:FBAFAE1E-2D42-4284-9950-(E-Mail Removed)...
> > Since Column A has the headers and I inputting the equation in IH9
> >
> > I changed the equation to
> > =SUMPRODUCT((MOD(COLUMN(B9:IG9)+4,5)=0)*(B9:IG9))
> > but the calculations are wrong is there anything else I need to change for
> > this adjustment or is this just the wrong equation for this situation
> >
> > "KLock" wrote:
> >
> >> Ok that probably will work the only problems are
> >>
> >> I need to start with column B, since column A is the header, and the
> >> equation I am inputting is at the end of the row, so I don't want to add
> >> these cells.
> >>
> >>
> >> "RagDyeR" wrote:
> >>
> >> > If you went from Column A to Column IV, *only* the "first column
> >> > series"
> >> > would contain 52 values.
> >> > All the rest would have 51.
> >> >
> >> > That being the case, this formula will total column A to IV on Row10,
> >> > starting in A:
> >> >
> >> > =SUMPRODUCT((MOD(COLUMN(10:10)+4,5)=0)*(10:10))
> >> >
> >> > Starting in B:
> >> > =SUMPRODUCT((MOD(COLUMN(10:10)+3,5)=0)*(10:10))
> >> >
> >> > Starting in C:
> >> > =SUMPRODUCT((MOD(COLUMN(10:10)+2,5)=0)*(10:10))
> >> >
> >> > Starting in D:
> >> > =SUMPRODUCT((MOD(COLUMN(10:10)+1,5)=0)*(10:10))
> >> >
> >> > Starting in E:
> >> > =SUMPRODUCT((MOD(COLUMN(10:10),5)=0)*(10:10))
> >> >
> >> >
> >> > --
> >> >
> >> > HTH,
> >> >
> >> > RD
> >> > =====================================================
> >> > Please keep all correspondence within the Group, so all may benefit!
> >> > =====================================================
> >> >
> >> >
> >> > "KLock" <(E-Mail Removed)> wrote in message
> >> > news:7EFEEDB7-28C7-4B4F-BEA2-(E-Mail Removed)...
> >> > I have to add every sixth value in a column summed over 52 value. Is
> >> > there
> >> > an equation to do this so I don't have to input each cell.
> >> >
> >> > Example
> >> >
> >> > Column 1 2 3 4 5 1 2 3 4 5
> >> >
> >> > So the equation I need is Column (1+1), Column (2+2), so on
> >> >
> >> >
> >> >

>
>
>

 
Reply With Quote
 
David Biddulph
Guest
Posts: n/a
 
      23rd Jan 2008
If you want every 6th value, I would have thought that you'd need MOD(...,6)
and not MOD(...,5), but the OP's example looked as if he might want every
5th though he said every 6th?
--
David Biddulph

"RagDyer" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Starting in B:
> =SUMPRODUCT((MOD(COLUMN(B9:IG9)+3,5)=0)*(B9:IG9))
>
> Starting in C:
> =SUMPRODUCT((MOD(COLUMN(B9:IG9)+2,5)=0)*(B9:IG9))
>
> Starting in D:
> =SUMPRODUCT((MOD(COLUMN(B9:IG9)+1,5)=0)*(B9:IG9))
>
> Starting in E:
> =SUMPRODUCT((MOD(COLUMN(B9:IG9),5)=0)*(B9:IG9))
>
> Starting in F:
> =SUMPRODUCT((MOD(COLUMN(B9:IG9)-1,5)=0)*(B9:IG9))
>
>
> --
> HTH,
>
> RD
>
> ---------------------------------------------------------------------------
> Please keep all correspondence within the NewsGroup, so all may benefit !
> ---------------------------------------------------------------------------
> "KLock" <(E-Mail Removed)> wrote in message
> news:FBAFAE1E-2D42-4284-9950-(E-Mail Removed)...
>> Since Column A has the headers and I inputting the equation in IH9
>>
>> I changed the equation to
>> =SUMPRODUCT((MOD(COLUMN(B9:IG9)+4,5)=0)*(B9:IG9))
>> but the calculations are wrong is there anything else I need to change
>> for
>> this adjustment or is this just the wrong equation for this situation
>>
>> "KLock" wrote:
>>
>>> Ok that probably will work the only problems are
>>>
>>> I need to start with column B, since column A is the header, and the
>>> equation I am inputting is at the end of the row, so I don't want to add
>>> these cells.
>>>
>>>
>>> "RagDyeR" wrote:
>>>
>>> > If you went from Column A to Column IV, *only* the "first column
>>> > series"
>>> > would contain 52 values.
>>> > All the rest would have 51.
>>> >
>>> > That being the case, this formula will total column A to IV on Row10,
>>> > starting in A:
>>> >
>>> > =SUMPRODUCT((MOD(COLUMN(10:10)+4,5)=0)*(10:10))
>>> >
>>> > Starting in B:
>>> > =SUMPRODUCT((MOD(COLUMN(10:10)+3,5)=0)*(10:10))
>>> >
>>> > Starting in C:
>>> > =SUMPRODUCT((MOD(COLUMN(10:10)+2,5)=0)*(10:10))
>>> >
>>> > Starting in D:
>>> > =SUMPRODUCT((MOD(COLUMN(10:10)+1,5)=0)*(10:10))
>>> >
>>> > Starting in E:
>>> > =SUMPRODUCT((MOD(COLUMN(10:10),5)=0)*(10:10))
>>> >
>>> >
>>> > --
>>> >
>>> > HTH,
>>> >
>>> > RD
>>> > =====================================================
>>> > Please keep all correspondence within the Group, so all may benefit!
>>> > =====================================================
>>> >
>>> >
>>> > "KLock" <(E-Mail Removed)> wrote in message
>>> > news:7EFEEDB7-28C7-4B4F-BEA2-(E-Mail Removed)...
>>> > I have to add every sixth value in a column summed over 52 value. Is
>>> > there
>>> > an equation to do this so I don't have to input each cell.
>>> >
>>> > Example
>>> >
>>> > Column 1 2 3 4 5 1 2 3 4 5
>>> >
>>> > So the equation I need is Column (1+1), Column (2+2), so on
>>> >
>>> >
>>> >

>
>



 
Reply With Quote
 
Ragdyer
Guest
Posts: n/a
 
      24th Jan 2008
You're welcome, and thank you for the feed-back.
--
Regards,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"KLock" <(E-Mail Removed)> wrote in message
news:9B07ECBA-BCDC-4A5C-81B4-(E-Mail Removed)...
> Ok that works thanks for the help
>
> "RagDyer" wrote:
>
> > Starting in B:
> > =SUMPRODUCT((MOD(COLUMN(B9:IG9)+3,5)=0)*(B9:IG9))
> >
> > Starting in C:
> > =SUMPRODUCT((MOD(COLUMN(B9:IG9)+2,5)=0)*(B9:IG9))
> >
> > Starting in D:
> > =SUMPRODUCT((MOD(COLUMN(B9:IG9)+1,5)=0)*(B9:IG9))
> >
> > Starting in E:
> > =SUMPRODUCT((MOD(COLUMN(B9:IG9),5)=0)*(B9:IG9))
> >
> > Starting in F:
> > =SUMPRODUCT((MOD(COLUMN(B9:IG9)-1,5)=0)*(B9:IG9))
> >
> >
> > --
> > HTH,
> >
> > RD
> >

>
> --------------------------------------------------------------------------

-
> > Please keep all correspondence within the NewsGroup, so all may benefit

!
>
> --------------------------------------------------------------------------

-
> > "KLock" <(E-Mail Removed)> wrote in message
> > news:FBAFAE1E-2D42-4284-9950-(E-Mail Removed)...
> > > Since Column A has the headers and I inputting the equation in IH9
> > >
> > > I changed the equation to
> > > =SUMPRODUCT((MOD(COLUMN(B9:IG9)+4,5)=0)*(B9:IG9))
> > > but the calculations are wrong is there anything else I need to change

for
> > > this adjustment or is this just the wrong equation for this situation
> > >
> > > "KLock" wrote:
> > >
> > >> Ok that probably will work the only problems are
> > >>
> > >> I need to start with column B, since column A is the header, and the
> > >> equation I am inputting is at the end of the row, so I don't want to

add
> > >> these cells.
> > >>
> > >>
> > >> "RagDyeR" wrote:
> > >>
> > >> > If you went from Column A to Column IV, *only* the "first column
> > >> > series"
> > >> > would contain 52 values.
> > >> > All the rest would have 51.
> > >> >
> > >> > That being the case, this formula will total column A to IV on

Row10,
> > >> > starting in A:
> > >> >
> > >> > =SUMPRODUCT((MOD(COLUMN(10:10)+4,5)=0)*(10:10))
> > >> >
> > >> > Starting in B:
> > >> > =SUMPRODUCT((MOD(COLUMN(10:10)+3,5)=0)*(10:10))
> > >> >
> > >> > Starting in C:
> > >> > =SUMPRODUCT((MOD(COLUMN(10:10)+2,5)=0)*(10:10))
> > >> >
> > >> > Starting in D:
> > >> > =SUMPRODUCT((MOD(COLUMN(10:10)+1,5)=0)*(10:10))
> > >> >
> > >> > Starting in E:
> > >> > =SUMPRODUCT((MOD(COLUMN(10:10),5)=0)*(10:10))
> > >> >
> > >> >
> > >> > --
> > >> >
> > >> > HTH,
> > >> >
> > >> > RD
> > >> > =====================================================
> > >> > Please keep all correspondence within the Group, so all may

benefit!
> > >> > =====================================================
> > >> >
> > >> >
> > >> > "KLock" <(E-Mail Removed)> wrote in message
> > >> > news:7EFEEDB7-28C7-4B4F-BEA2-(E-Mail Removed)...
> > >> > I have to add every sixth value in a column summed over 52 value.

Is
> > >> > there
> > >> > an equation to do this so I don't have to input each cell.
> > >> >
> > >> > Example
> > >> >
> > >> > Column 1 2 3 4 5 1 2 3 4 5
> > >> >
> > >> > So the equation I need is Column (1+1), Column (2+2), so on
> > >> >
> > >> >
> > >> >

> >
> >
> >


 
Reply With Quote
 
Ragdyer
Guest
Posts: n/a
 
      24th Jan 2008
It's usually a good idea to give examples preference over text.<g>
--
Regards,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"David Biddulph" <groups [at] biddulph.org.uk> wrote in message
news:(E-Mail Removed)...
> If you want every 6th value, I would have thought that you'd need

MOD(...,6)
> and not MOD(...,5), but the OP's example looked as if he might want every
> 5th though he said every 6th?
> --
> David Biddulph
>
> "RagDyer" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > Starting in B:
> > =SUMPRODUCT((MOD(COLUMN(B9:IG9)+3,5)=0)*(B9:IG9))
> >
> > Starting in C:
> > =SUMPRODUCT((MOD(COLUMN(B9:IG9)+2,5)=0)*(B9:IG9))
> >
> > Starting in D:
> > =SUMPRODUCT((MOD(COLUMN(B9:IG9)+1,5)=0)*(B9:IG9))
> >
> > Starting in E:
> > =SUMPRODUCT((MOD(COLUMN(B9:IG9),5)=0)*(B9:IG9))
> >
> > Starting in F:
> > =SUMPRODUCT((MOD(COLUMN(B9:IG9)-1,5)=0)*(B9:IG9))
> >
> >
> > --
> > HTH,
> >
> > RD
> >

>
> --------------------------------------------------------------------------

-
> > Please keep all correspondence within the NewsGroup, so all may benefit

!
>
> --------------------------------------------------------------------------

-
> > "KLock" <(E-Mail Removed)> wrote in message
> > news:FBAFAE1E-2D42-4284-9950-(E-Mail Removed)...
> >> Since Column A has the headers and I inputting the equation in IH9
> >>
> >> I changed the equation to
> >> =SUMPRODUCT((MOD(COLUMN(B9:IG9)+4,5)=0)*(B9:IG9))
> >> but the calculations are wrong is there anything else I need to change
> >> for
> >> this adjustment or is this just the wrong equation for this situation
> >>
> >> "KLock" wrote:
> >>
> >>> Ok that probably will work the only problems are
> >>>
> >>> I need to start with column B, since column A is the header, and the
> >>> equation I am inputting is at the end of the row, so I don't want to

add
> >>> these cells.
> >>>
> >>>
> >>> "RagDyeR" wrote:
> >>>
> >>> > If you went from Column A to Column IV, *only* the "first column
> >>> > series"
> >>> > would contain 52 values.
> >>> > All the rest would have 51.
> >>> >
> >>> > That being the case, this formula will total column A to IV on

Row10,
> >>> > starting in A:
> >>> >
> >>> > =SUMPRODUCT((MOD(COLUMN(10:10)+4,5)=0)*(10:10))
> >>> >
> >>> > Starting in B:
> >>> > =SUMPRODUCT((MOD(COLUMN(10:10)+3,5)=0)*(10:10))
> >>> >
> >>> > Starting in C:
> >>> > =SUMPRODUCT((MOD(COLUMN(10:10)+2,5)=0)*(10:10))
> >>> >
> >>> > Starting in D:
> >>> > =SUMPRODUCT((MOD(COLUMN(10:10)+1,5)=0)*(10:10))
> >>> >
> >>> > Starting in E:
> >>> > =SUMPRODUCT((MOD(COLUMN(10:10),5)=0)*(10:10))
> >>> >
> >>> >
> >>> > --
> >>> >
> >>> > HTH,
> >>> >
> >>> > RD
> >>> > =====================================================
> >>> > Please keep all correspondence within the Group, so all may benefit!
> >>> > =====================================================
> >>> >
> >>> >
> >>> > "KLock" <(E-Mail Removed)> wrote in message
> >>> > news:7EFEEDB7-28C7-4B4F-BEA2-(E-Mail Removed)...
> >>> > I have to add every sixth value in a column summed over 52 value.

Is
> >>> > there
> >>> > an equation to do this so I don't have to input each cell.
> >>> >
> >>> > Example
> >>> >
> >>> > Column 1 2 3 4 5 1 2 3 4 5
> >>> >
> >>> > So the equation I need is Column (1+1), Column (2+2), so on
> >>> >
> >>> >
> >>> >

> >
> >

>
>


 
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
In addicting across columns, every sixth column, I loose .01 =?Utf-8?B?Q2xheQ==?= Microsoft Excel New Users 1 6th Aug 2006 03:47 AM
Graduate research paper template for Turabian Sixth Edition. =?Utf-8?B?SGVyYg==?= Microsoft Word Document Management 1 6th Nov 2005 02:22 AM
how do I make recurrring meeting every sixth day, excluding weeken =?Utf-8?B?Q2Jlbmh1cg==?= Microsoft Outlook Calendar 2 22nd Feb 2005 07:07 AM
Need help please, Having trouble finding/adding users for purpose of granting permissions or adding them to groups in a win 2k domain on an XP workstation. rmalph@happy.days Microsoft Windows 2000 Security 4 16th Oct 2004 07:11 AM
Need help please, Having trouble finding/adding users for purpose of granting permissions or adding them to groups in a win 2k domain on an XP workstation. rmalph@happy.days Microsoft Windows 2000 0 11th Oct 2004 11:37 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 01:59 AM.