PC Review


Reply
Thread Tools Rate Thread

Can I attach an Excel file to a post?

 
 
SouthAfricanStan
Guest
Posts: n/a
 
      27th Feb 2007
My problem can only be properly understood by you actually seeing the
worksheets
Is there a way to achieve this?


 
Reply With Quote
 
 
 
 
Bob Phillips
Guest
Posts: n/a
 
      27th Feb 2007
The group doesn't like to see attachments, partly because of virus
potential, partly because of the download impact.

Try and explain it, you might be surprised. If it is not clear, someone
might then be prepared to exchange the file with you, off-group.

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)



"SouthAfricanStan" <me@there> wrote in message
news:%(E-Mail Removed)...
> My problem can only be properly understood by you actually seeing the
> worksheets
> Is there a way to achieve this?
>



 
Reply With Quote
 
SouthAfricanStan
Guest
Posts: n/a
 
      27th Feb 2007
Here goes .. Windows XP, Office 2003

I currently have a telephone index, column headings, "Name", "Home", "Cell",
"Business" and "Fax" +- 300 entries, one in each row.
The numbers are not spaced like telephone numbers (555 555 5555) but are
5555555555.
Some Names have only one number, e.g. a Home number only, some have two,
some have three and others have all four numbers. (one in each column)

I need to convert this list to a narrow booklet page, each entry to span 5
rows, as follows:
A1 The actual name (of the first person on the current list)
B2 "Home", C2 The actual Home number, or blank if no home number
B3 "Cell", C3 The actual Cell number, or blank if no cell number
B4 "Bus", C4 The actual Business number, or blank if no business number
B5 " Fax", B5 The actual Fax number, or blank if no fax number
B6 the actual name (of the second person on the current list), and so on.

In other words:
In column A, An actual name, in rows 1, 6, 11, 16 and so on

In column B, "Home" in rows 2, 7, 12, 17 and so on
In column B, "Cell" in rows 3, 8, 13, 18 and so on
In column B, "Bus" in rows 4, 9, 14, 19 and so on
In column B, "Fax" in rows 5, 10, 15, 20 and so on

In column C, The actual Home number (or blank) in rows 2, 7, 12, 17 and so
on
In column C, The actual Cell number (or blank) in rows 3, 8, 13, 18 and so
on
In column C, The actual Business number (or blank) in rows 4, 9, 14, 19 and
so on
In column C, The actual Fax number (or blank) in rows 5, 10, 15, 20 and so
on

Feint line border lines across cols A, B, and C (not down) between lines
5&6, between lines 10&11, between lines 15&16
All other lines across cols A, B and C (not down) to have even feinter (40%
grey?) lines between each line.

Each entry would look something like this:
___________________________
Jones, Peter
Home 123 456 7890
Cell 246 802 468
Bus (Blank - he does not have a business 'phone)
Fax 555 555 5555

Clear as mud?

"Bob Phillips" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> The group doesn't like to see attachments, partly because of virus
> potential, partly because of the download impact.
>
> Try and explain it, you might be surprised. If it is not clear, someone
> might then be prepared to exchange the file with you, off-group.
>
> --
> ---
> HTH
>
> Bob
>
> (there's no email, no snail mail, but somewhere should be gmail in my
> addy)
>
>
>
> "SouthAfricanStan" <me@there> wrote in message
> news:%(E-Mail Removed)...
>> My problem can only be properly understood by you actually seeing the
>> worksheets
>> Is there a way to achieve this?
>>

>
>



 
Reply With Quote
 
RagDyeR
Guest
Posts: n/a
 
      27th Feb 2007
Let's say that your datalist is on Sheet1, and you're creating this
"Booklet" on another sheet in the same WB.

As you describe, your Sheet1 labels are in Row1, and your data starts in
Row2.

You'll notice that there is primarily *ONE* formula returning all your data
to the booklet sheet, with just Columns being the main revision to each.

In the booklet sheet:
in A1 enter:

=INDEX(Sheet1!$A$2:$A$300,ROWS($1:5)/5)

In B2 enter:
Home

In B3 enter:
Cell

..In B4 enter:
Business

In B5 enter:
Fax

In C2 enter:
=IF(INDEX(Sheet1!$B$2:$B$300,ROWS($1:5)/5)="","",TEXT(INDEX(Sheet1!$B$2:$B$300,ROWS($1:5)/5),"###
### ####"))

In C3 to C5, enter the same formula just *changing* the Column references,
as:
=IF(INDEX(Sheet1!$C$2:$C$300,ROWS($1:6)/5)="","",TEXT(INDEX(Sheet1!$C$2:$C$300,ROWS($1:6)/5),"###
### ####"))
=IF(INDEX(Sheet1!$D$2:$D$300,ROWS($1:7)/5)="","",TEXT(INDEX(Sheet1!$D$2:$D$300,ROWS($1:7)/5),"###
### ####"))
=IF(INDEX(Sheet1!$E$2:$E$300,ROWS($1:8)/5)="","",TEXT(INDEX(Sheet1!$E$2:$E$300,ROWS($1:8)/5),"###
### ####"))

NOW ... select A1 to C5, and drag down the selection to copy as far as
needed.

If your data goes beyond Row 300 in Sheet1, you'll have to adjust the Index
references.
--

HTH,

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




"SouthAfricanStan" <me@there> wrote in message
news:%(E-Mail Removed)...
Here goes .. Windows XP, Office 2003

I currently have a telephone index, column headings, "Name", "Home", "Cell",
"Business" and "Fax" +- 300 entries, one in each row.
The numbers are not spaced like telephone numbers (555 555 5555) but are
5555555555.
Some Names have only one number, e.g. a Home number only, some have two,
some have three and others have all four numbers. (one in each column)

I need to convert this list to a narrow booklet page, each entry to span 5
rows, as follows:
A1 The actual name (of the first person on the current list)
B2 "Home", C2 The actual Home number, or blank if no home number
B3 "Cell", C3 The actual Cell number, or blank if no cell number
B4 "Bus", C4 The actual Business number, or blank if no business number
B5 " Fax", B5 The actual Fax number, or blank if no fax number
B6 the actual name (of the second person on the current list), and so on.

In other words:
In column A, An actual name, in rows 1, 6, 11, 16 and so on

In column B, "Home" in rows 2, 7, 12, 17 and so on
In column B, "Cell" in rows 3, 8, 13, 18 and so on
In column B, "Bus" in rows 4, 9, 14, 19 and so on
In column B, "Fax" in rows 5, 10, 15, 20 and so on

In column C, The actual Home number (or blank) in rows 2, 7, 12, 17 and so
on
In column C, The actual Cell number (or blank) in rows 3, 8, 13, 18 and so
on
In column C, The actual Business number (or blank) in rows 4, 9, 14, 19 and
so on
In column C, The actual Fax number (or blank) in rows 5, 10, 15, 20 and so
on

Feint line border lines across cols A, B, and C (not down) between lines
5&6, between lines 10&11, between lines 15&16
All other lines across cols A, B and C (not down) to have even feinter (40%
grey?) lines between each line.

Each entry would look something like this:
___________________________
Jones, Peter
Home 123 456 7890
Cell 246 802 468
Bus (Blank - he does not have a business 'phone)
Fax 555 555 5555

Clear as mud?

"Bob Phillips" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> The group doesn't like to see attachments, partly because of virus
> potential, partly because of the download impact.
>
> Try and explain it, you might be surprised. If it is not clear, someone
> might then be prepared to exchange the file with you, off-group.
>
> --
> ---
> HTH
>
> Bob
>
> (there's no email, no snail mail, but somewhere should be gmail in my
> addy)
>
>
>
> "SouthAfricanStan" <me@there> wrote in message
> news:%(E-Mail Removed)...
>> My problem can only be properly understood by you actually seeing the
>> worksheets
>> Is there a way to achieve this?
>>

>
>




 
Reply With Quote
 
RagDyeR
Guest
Posts: n/a
 
      27th Feb 2007
As far as those lines you mentioned,
just add them to that first block of formulas (A1 to C5) as you wish, and
they'll be copied down the sheet with the rest of the formulas.
--

HTH,

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

"RagDyeR" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
Let's say that your datalist is on Sheet1, and you're creating this
"Booklet" on another sheet in the same WB.

As you describe, your Sheet1 labels are in Row1, and your data starts in
Row2.

You'll notice that there is primarily *ONE* formula returning all your data
to the booklet sheet, with just Columns being the main revision to each.

In the booklet sheet:
in A1 enter:

=INDEX(Sheet1!$A$2:$A$300,ROWS($1:5)/5)

In B2 enter:
Home

In B3 enter:
Cell

..In B4 enter:
Business

In B5 enter:
Fax

In C2 enter:
=IF(INDEX(Sheet1!$B$2:$B$300,ROWS($1:5)/5)="","",TEXT(INDEX(Sheet1!$B$2:$B$300,ROWS($1:5)/5),"###
### ####"))

In C3 to C5, enter the same formula just *changing* the Column references,
as:
=IF(INDEX(Sheet1!$C$2:$C$300,ROWS($1:6)/5)="","",TEXT(INDEX(Sheet1!$C$2:$C$300,ROWS($1:6)/5),"###
### ####"))
=IF(INDEX(Sheet1!$D$2:$D$300,ROWS($1:7)/5)="","",TEXT(INDEX(Sheet1!$D$2:$D$300,ROWS($1:7)/5),"###
### ####"))
=IF(INDEX(Sheet1!$E$2:$E$300,ROWS($1:8)/5)="","",TEXT(INDEX(Sheet1!$E$2:$E$300,ROWS($1:8)/5),"###
### ####"))

NOW ... select A1 to C5, and drag down the selection to copy as far as
needed.

If your data goes beyond Row 300 in Sheet1, you'll have to adjust the Index
references.
--

HTH,

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




"SouthAfricanStan" <me@there> wrote in message
news:%(E-Mail Removed)...
Here goes .. Windows XP, Office 2003

I currently have a telephone index, column headings, "Name", "Home", "Cell",
"Business" and "Fax" +- 300 entries, one in each row.
The numbers are not spaced like telephone numbers (555 555 5555) but are
5555555555.
Some Names have only one number, e.g. a Home number only, some have two,
some have three and others have all four numbers. (one in each column)

I need to convert this list to a narrow booklet page, each entry to span 5
rows, as follows:
A1 The actual name (of the first person on the current list)
B2 "Home", C2 The actual Home number, or blank if no home number
B3 "Cell", C3 The actual Cell number, or blank if no cell number
B4 "Bus", C4 The actual Business number, or blank if no business number
B5 " Fax", B5 The actual Fax number, or blank if no fax number
B6 the actual name (of the second person on the current list), and so on.

In other words:
In column A, An actual name, in rows 1, 6, 11, 16 and so on

In column B, "Home" in rows 2, 7, 12, 17 and so on
In column B, "Cell" in rows 3, 8, 13, 18 and so on
In column B, "Bus" in rows 4, 9, 14, 19 and so on
In column B, "Fax" in rows 5, 10, 15, 20 and so on

In column C, The actual Home number (or blank) in rows 2, 7, 12, 17 and so
on
In column C, The actual Cell number (or blank) in rows 3, 8, 13, 18 and so
on
In column C, The actual Business number (or blank) in rows 4, 9, 14, 19 and
so on
In column C, The actual Fax number (or blank) in rows 5, 10, 15, 20 and so
on

Feint line border lines across cols A, B, and C (not down) between lines
5&6, between lines 10&11, between lines 15&16
All other lines across cols A, B and C (not down) to have even feinter (40%
grey?) lines between each line.

Each entry would look something like this:
___________________________
Jones, Peter
Home 123 456 7890
Cell 246 802 468
Bus (Blank - he does not have a business 'phone)
Fax 555 555 5555

Clear as mud?

"Bob Phillips" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> The group doesn't like to see attachments, partly because of virus
> potential, partly because of the download impact.
>
> Try and explain it, you might be surprised. If it is not clear, someone
> might then be prepared to exchange the file with you, off-group.
>
> --
> ---
> HTH
>
> Bob
>
> (there's no email, no snail mail, but somewhere should be gmail in my
> addy)
>
>
>
> "SouthAfricanStan" <me@there> wrote in message
> news:%(E-Mail Removed)...
>> My problem can only be properly understood by you actually seeing the
>> worksheets
>> Is there a way to achieve this?
>>

>
>





 
Reply With Quote
 
Pete_UK
Guest
Posts: n/a
 
      27th Feb 2007
Quite a clear explanation - what's the fuss about? <bg>

I see you have put spaces in the phone numbers in your example - will
these always occur after the 3rd and 6th digit of the phone number?
Can you ensure that there are no spaces in your original phone
numbers, and are these stored as text (to preserve leading zeroes)?

Given that you require borders, this would necessitate a VBA solution
- are you comfortable with this?

Pete


On Feb 27, 1:46 pm, "SouthAfricanStan" <me@there> wrote:
> Here goes .. Windows XP, Office 2003
>
> I currently have a telephone index, column headings, "Name", "Home", "Cell",
> "Business" and "Fax" +- 300 entries, one in each row.
> The numbers are not spaced like telephone numbers (555 555 5555) but are
> 5555555555.
> Some Names have only one number, e.g. a Home number only, some have two,
> some have three and others have all four numbers. (one in each column)
>
> I need to convert this list to a narrow booklet page, each entry to span 5
> rows, as follows:
> A1 The actual name (of the first person on the current list)
> B2 "Home", C2 The actual Home number, or blank if no home number
> B3 "Cell", C3 The actual Cell number, or blank if no cell number
> B4 "Bus", C4 The actual Business number, or blank if no business number
> B5 " Fax", B5 The actual Fax number, or blank if no fax number
> B6 the actual name (of the second person on the current list), and so on.
>
> In other words:
> In column A, An actual name, in rows 1, 6, 11, 16 and so on
>
> In column B, "Home" in rows 2, 7, 12, 17 and so on
> In column B, "Cell" in rows 3, 8, 13, 18 and so on
> In column B, "Bus" in rows 4, 9, 14, 19 and so on
> In column B, "Fax" in rows 5, 10, 15, 20 and so on
>
> In column C, The actual Home number (or blank) in rows 2, 7, 12, 17 and so
> on
> In column C, The actual Cell number (or blank) in rows 3, 8, 13, 18 and so
> on
> In column C, The actual Business number (or blank) in rows 4, 9, 14, 19 and
> so on
> In column C, The actual Fax number (or blank) in rows 5, 10, 15, 20 and so
> on
>
> Feint line border lines across cols A, B, and C (not down) between lines
> 5&6, between lines 10&11, between lines 15&16
> All other lines across cols A, B and C (not down) to have even feinter (40%
> grey?) lines between each line.
>
> Each entry would look something like this:
> ___________________________
> Jones, Peter
> Home 123 456 7890
> Cell 246 802 468
> Bus (Blank - he does not have a business 'phone)
> Fax 555 555 5555
>
> Clear as mud?
>
> "Bob Phillips" <bob....@somewhere.com> wrote in message
>
> news:%(E-Mail Removed)...
>
>
>
> > The group doesn't like to see attachments, partly because of virus
> > potential, partly because of the download impact.

>
> > Try and explain it, you might be surprised. If it is not clear, someone
> > might then be prepared to exchange the file with you, off-group.

>
> > --
> > ---
> > HTH

>
> > Bob

>
> > (there's no email, no snail mail, but somewhere should be gmail in my
> > addy)

>
> > "SouthAfricanStan" <me@there> wrote in message
> >news:%(E-Mail Removed)...
> >> My problem can only be properly understood by you actually seeing the
> >> worksheets
> >> Is there a way to achieve this?- Hide quoted text -

>
> - Show quoted text -



 
Reply With Quote
 
SouthAfricanStan
Guest
Posts: n/a
 
      1st Mar 2007
AMAZING!!!!!
It works, except for two small items:

1 All of my numbers are either preceded by a single zero (local) or two
zeros (international).

These zeros are not being brought to the booklet sheet.

The original sheet is formatted as "Text" - no formulas there, and the
booklet sheet as "General". If I change the booklet sheet to "Text" the
formulas appear...

2. Despite your "####" in the formulas as the last four digits, the result
is three digits at the end of each number...

Some of the numbers have more than 10 digits - Can I add more "###"s at the
front of the #s?


"RagDyeR" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Let's say that your datalist is on Sheet1, and you're creating this
> "Booklet" on another sheet in the same WB.
>
> As you describe, your Sheet1 labels are in Row1, and your data starts in
> Row2.
>
> You'll notice that there is primarily *ONE* formula returning all your
> data
> to the booklet sheet, with just Columns being the main revision to each.
>
> In the booklet sheet:
> in A1 enter:
>
> =INDEX(Sheet1!$A$2:$A$300,ROWS($1:5)/5)
>
> In B2 enter:
> Home
>
> In B3 enter:
> Cell
>
> .In B4 enter:
> Business
>
> In B5 enter:
> Fax
>
> In C2 enter:
> =IF(INDEX(Sheet1!$B$2:$B$300,ROWS($1:5)/5)="","",TEXT(INDEX(Sheet1!$B$2:$B$300,ROWS($1:5)/5),"###
> ### ####"))
>
> In C3 to C5, enter the same formula just *changing* the Column references,
> as:
> =IF(INDEX(Sheet1!$C$2:$C$300,ROWS($1:6)/5)="","",TEXT(INDEX(Sheet1!$C$2:$C$300,ROWS($1:6)/5),"###
> ### ####"))
> =IF(INDEX(Sheet1!$D$2:$D$300,ROWS($1:7)/5)="","",TEXT(INDEX(Sheet1!$D$2:$D$300,ROWS($1:7)/5),"###
> ### ####"))
> =IF(INDEX(Sheet1!$E$2:$E$300,ROWS($1:8)/5)="","",TEXT(INDEX(Sheet1!$E$2:$E$300,ROWS($1:8)/5),"###
> ### ####"))
>
> NOW ... select A1 to C5, and drag down the selection to copy as far as
> needed.
>
> If your data goes beyond Row 300 in Sheet1, you'll have to adjust the
> Index
> references.
> --
>
> HTH,
>
> RD
> =====================================================
> Please keep all correspondence within the Group, so all may benefit!
> =====================================================
>
>
>
>
> "SouthAfricanStan" <me@there> wrote in message
> news:%(E-Mail Removed)...
> Here goes .. Windows XP, Office 2003
>
> I currently have a telephone index, column headings, "Name", "Home",
> "Cell",
> "Business" and "Fax" +- 300 entries, one in each row.
> The numbers are not spaced like telephone numbers (555 555 5555) but are
> 5555555555.
> Some Names have only one number, e.g. a Home number only, some have two,
> some have three and others have all four numbers. (one in each column)
>
> I need to convert this list to a narrow booklet page, each entry to span 5
> rows, as follows:
> A1 The actual name (of the first person on the current list)
> B2 "Home", C2 The actual Home number, or blank if no home number
> B3 "Cell", C3 The actual Cell number, or blank if no cell number
> B4 "Bus", C4 The actual Business number, or blank if no business number
> B5 " Fax", B5 The actual Fax number, or blank if no fax number
> B6 the actual name (of the second person on the current list), and so on.
>
> In other words:
> In column A, An actual name, in rows 1, 6, 11, 16 and so on
>
> In column B, "Home" in rows 2, 7, 12, 17 and so on
> In column B, "Cell" in rows 3, 8, 13, 18 and so on
> In column B, "Bus" in rows 4, 9, 14, 19 and so on
> In column B, "Fax" in rows 5, 10, 15, 20 and so on
>
> In column C, The actual Home number (or blank) in rows 2, 7, 12, 17 and so
> on
> In column C, The actual Cell number (or blank) in rows 3, 8, 13, 18 and so
> on
> In column C, The actual Business number (or blank) in rows 4, 9, 14, 19
> and
> so on
> In column C, The actual Fax number (or blank) in rows 5, 10, 15, 20 and
> so
> on
>
> Feint line border lines across cols A, B, and C (not down) between lines
> 5&6, between lines 10&11, between lines 15&16
> All other lines across cols A, B and C (not down) to have even feinter
> (40%
> grey?) lines between each line.
>
> Each entry would look something like this:
> ___________________________
> Jones, Peter
> Home 123 456 7890
> Cell 246 802 468
> Bus (Blank - he does not have a business 'phone)
> Fax 555 555 5555
>
> Clear as mud?
>
> "Bob Phillips" <(E-Mail Removed)> wrote in message
> news:%(E-Mail Removed)...
>> The group doesn't like to see attachments, partly because of virus
>> potential, partly because of the download impact.
>>
>> Try and explain it, you might be surprised. If it is not clear, someone
>> might then be prepared to exchange the file with you, off-group.
>>
>> --
>> ---
>> HTH
>>
>> Bob
>>
>> (there's no email, no snail mail, but somewhere should be gmail in my
>> addy)
>>
>>
>>
>> "SouthAfricanStan" <me@there> wrote in message
>> news:%(E-Mail Removed)...
>>> My problem can only be properly understood by you actually seeing the
>>> worksheets
>>> Is there a way to achieve this?
>>>

>>
>>

>
>
>



 
Reply With Quote
 
RagDyeR
Guest
Posts: n/a
 
      1st Mar 2007
Play around!

Try and/or change these:

"000 000 0000"
"000 000 0000#"
"000 000 0000##"

--

HTH,

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




"SouthAfricanStan" <me@there> wrote in message
news:(E-Mail Removed)...
AMAZING!!!!!
It works, except for two small items:

1 All of my numbers are either preceded by a single zero (local) or two
zeros (international).

These zeros are not being brought to the booklet sheet.

The original sheet is formatted as "Text" - no formulas there, and the
booklet sheet as "General". If I change the booklet sheet to "Text" the
formulas appear...

2. Despite your "####" in the formulas as the last four digits, the result
is three digits at the end of each number...

Some of the numbers have more than 10 digits - Can I add more "###"s at the
front of the #s?


"RagDyeR" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Let's say that your datalist is on Sheet1, and you're creating this
> "Booklet" on another sheet in the same WB.
>
> As you describe, your Sheet1 labels are in Row1, and your data starts in
> Row2.
>
> You'll notice that there is primarily *ONE* formula returning all your
> data
> to the booklet sheet, with just Columns being the main revision to each.
>
> In the booklet sheet:
> in A1 enter:
>
> =INDEX(Sheet1!$A$2:$A$300,ROWS($1:5)/5)
>
> In B2 enter:
> Home
>
> In B3 enter:
> Cell
>
> .In B4 enter:
> Business
>
> In B5 enter:
> Fax
>
> In C2 enter:
> =IF(INDEX(Sheet1!$B$2:$B$300,ROWS($1:5)/5)="","",TEXT(INDEX(Sheet1!$B$2:$B$300,ROWS($1:5)/5),"###
> ### ####"))
>
> In C3 to C5, enter the same formula just *changing* the Column references,
> as:
> =IF(INDEX(Sheet1!$C$2:$C$300,ROWS($1:6)/5)="","",TEXT(INDEX(Sheet1!$C$2:$C$300,ROWS($1:6)/5),"###
> ### ####"))
> =IF(INDEX(Sheet1!$D$2:$D$300,ROWS($1:7)/5)="","",TEXT(INDEX(Sheet1!$D$2:$D$300,ROWS($1:7)/5),"###
> ### ####"))
> =IF(INDEX(Sheet1!$E$2:$E$300,ROWS($1:8)/5)="","",TEXT(INDEX(Sheet1!$E$2:$E$300,ROWS($1:8)/5),"###
> ### ####"))
>
> NOW ... select A1 to C5, and drag down the selection to copy as far as
> needed.
>
> If your data goes beyond Row 300 in Sheet1, you'll have to adjust the
> Index
> references.
> --
>
> HTH,
>
> RD
> =====================================================
> Please keep all correspondence within the Group, so all may benefit!
> =====================================================
>
>
>
>
> "SouthAfricanStan" <me@there> wrote in message
> news:%(E-Mail Removed)...
> Here goes .. Windows XP, Office 2003
>
> I currently have a telephone index, column headings, "Name", "Home",
> "Cell",
> "Business" and "Fax" +- 300 entries, one in each row.
> The numbers are not spaced like telephone numbers (555 555 5555) but are
> 5555555555.
> Some Names have only one number, e.g. a Home number only, some have two,
> some have three and others have all four numbers. (one in each column)
>
> I need to convert this list to a narrow booklet page, each entry to span 5
> rows, as follows:
> A1 The actual name (of the first person on the current list)
> B2 "Home", C2 The actual Home number, or blank if no home number
> B3 "Cell", C3 The actual Cell number, or blank if no cell number
> B4 "Bus", C4 The actual Business number, or blank if no business number
> B5 " Fax", B5 The actual Fax number, or blank if no fax number
> B6 the actual name (of the second person on the current list), and so on.
>
> In other words:
> In column A, An actual name, in rows 1, 6, 11, 16 and so on
>
> In column B, "Home" in rows 2, 7, 12, 17 and so on
> In column B, "Cell" in rows 3, 8, 13, 18 and so on
> In column B, "Bus" in rows 4, 9, 14, 19 and so on
> In column B, "Fax" in rows 5, 10, 15, 20 and so on
>
> In column C, The actual Home number (or blank) in rows 2, 7, 12, 17 and so
> on
> In column C, The actual Cell number (or blank) in rows 3, 8, 13, 18 and so
> on
> In column C, The actual Business number (or blank) in rows 4, 9, 14, 19
> and
> so on
> In column C, The actual Fax number (or blank) in rows 5, 10, 15, 20 and
> so
> on
>
> Feint line border lines across cols A, B, and C (not down) between lines
> 5&6, between lines 10&11, between lines 15&16
> All other lines across cols A, B and C (not down) to have even feinter
> (40%
> grey?) lines between each line.
>
> Each entry would look something like this:
> ___________________________
> Jones, Peter
> Home 123 456 7890
> Cell 246 802 468
> Bus (Blank - he does not have a business 'phone)
> Fax 555 555 5555
>
> Clear as mud?
>
> "Bob Phillips" <(E-Mail Removed)> wrote in message
> news:%(E-Mail Removed)...
>> The group doesn't like to see attachments, partly because of virus
>> potential, partly because of the download impact.
>>
>> Try and explain it, you might be surprised. If it is not clear, someone
>> might then be prepared to exchange the file with you, off-group.
>>
>> --
>> ---
>> HTH
>>
>> Bob
>>
>> (there's no email, no snail mail, but somewhere should be gmail in my
>> addy)
>>
>>
>>
>> "SouthAfricanStan" <me@there> wrote in message
>> news:%(E-Mail Removed)...
>>> My problem can only be properly understood by you actually seeing the
>>> worksheets
>>> Is there a way to achieve this?
>>>

>>
>>

>
>
>




 
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
How to post data and attach file using webbrowser.navigate Nadeem Microsoft Dot NET 0 5th Oct 2009 12:32 PM
how to attach file into excel 2007 si_08747 Microsoft Excel Misc 1 17th Jun 2009 12:24 PM
How to attach a file to an excel sheet? Target_locked Microsoft Excel Misc 1 9th May 2008 12:18 PM
Attach Excel File to Word =?Utf-8?B?TWlsbGluZ3Rvbg==?= Microsoft Excel Misc 1 18th Aug 2007 11:19 AM
Excel 2002: Can I attach different file formats to excel files ? =?Utf-8?B?TXIuIExvdw==?= Microsoft Excel Misc 2 2nd Jul 2007 06:14 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 07:54 PM.