Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 112
Default Function to autofill remaining width of a cell

Hello, I am trying to use Excel data to form a column for a seating chart
that I am designing in Adobe Illustrator. I need the data within the cell to
list the guest name (characters will vary) aligned to the left, a series of
spaces and dots, followed by their table number - aligned to the right.

Is there a formula I can enter that will auto fill the appropriate # spaces
and dots between the name and table number - so that I don't have to do this
manually? I would like the end result to be one (or however many necessary)
column / list that fills my column width precisely.

If no, do you have any other suggestions? My data is in Excel, but I could
always import to other Office apps if needed.

Thanks so much!
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default Function to autofill remaining width of a cell

Try using REPT() function. The below will return 150 dots...I am not sure
whether this will be of help to you..

=REPT(".",150)


If this post helps click Yes
---------------
Jacob Skaria


"Kate" wrote:

Hello, I am trying to use Excel data to form a column for a seating chart
that I am designing in Adobe Illustrator. I need the data within the cell to
list the guest name (characters will vary) aligned to the left, a series of
spaces and dots, followed by their table number - aligned to the right.

Is there a formula I can enter that will auto fill the appropriate # spaces
and dots between the name and table number - so that I don't have to do this
manually? I would like the end result to be one (or however many necessary)
column / list that fills my column width precisely.

If no, do you have any other suggestions? My data is in Excel, but I could
always import to other Office apps if needed.

Thanks so much!

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 112
Default Function to autofill remaining width of a cell

Thanks. The issue is that the # of repeats of " , " would vary depending on
the number of characters in the guest name / table number.

Below is an example of what I am trying to generate...not sure if there is a
function that will save me from manually typing middle section, and will also
fit the data to the exact width of my column.

Mr. and Mrs. John Smith . . . . . . . . 14
Ms. Jane Doe . . . . . . . . . . . . . . . . . 5



"Jacob Skaria" wrote:

Try using REPT() function. The below will return 150 dots...I am not sure
whether this will be of help to you..

=REPT(".",150)


If this post helps click Yes
---------------
Jacob Skaria


"Kate" wrote:

Hello, I am trying to use Excel data to form a column for a seating chart
that I am designing in Adobe Illustrator. I need the data within the cell to
list the guest name (characters will vary) aligned to the left, a series of
spaces and dots, followed by their table number - aligned to the right.

Is there a formula I can enter that will auto fill the appropriate # spaces
and dots between the name and table number - so that I don't have to do this
manually? I would like the end result to be one (or however many necessary)
column / list that fills my column width precisely.

If no, do you have any other suggestions? My data is in Excel, but I could
always import to other Office apps if needed.

Thanks so much!

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default Function to autofill remaining width of a cell

If you are using monospace fonts this will work..If you have name in A1. Try
something like =A1 & REPT("." , 50-len(A1)).

If this post helps click Yes
---------------
Jacob Skaria


"Kate" wrote:

Thanks. The issue is that the # of repeats of " , " would vary depending on
the number of characters in the guest name / table number.

Below is an example of what I am trying to generate...not sure if there is a
function that will save me from manually typing middle section, and will also
fit the data to the exact width of my column.

Mr. and Mrs. John Smith . . . . . . . . 14
Ms. Jane Doe . . . . . . . . . . . . . . . . . 5



"Jacob Skaria" wrote:

Try using REPT() function. The below will return 150 dots...I am not sure
whether this will be of help to you..

=REPT(".",150)


If this post helps click Yes
---------------
Jacob Skaria


"Kate" wrote:

Hello, I am trying to use Excel data to form a column for a seating chart
that I am designing in Adobe Illustrator. I need the data within the cell to
list the guest name (characters will vary) aligned to the left, a series of
spaces and dots, followed by their table number - aligned to the right.

Is there a formula I can enter that will auto fill the appropriate # spaces
and dots between the name and table number - so that I don't have to do this
manually? I would like the end result to be one (or however many necessary)
column / list that fills my column width precisely.

If no, do you have any other suggestions? My data is in Excel, but I could
always import to other Office apps if needed.

Thanks so much!

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,389
Default Function to autofill remaining width of a cell

I would do it as follows.
1. Assume your names are in column A.
2. In column B, use the formula =a1&rept(". ",100) and copy down
3. Set the width of column B as desired.
4. Put your table number in column C.
5. Print columns B and C.

It doesn't matter if you have too many dots in column B, because Excel will
print only the width set (as long as there's something in column C). So you
don't need to fill the exact width of the column, you just need to make sure
it's filled to at least the width you need.

Regards,
Fred.

"Kate" wrote in message
...
Thanks. The issue is that the # of repeats of " , " would vary depending
on
the number of characters in the guest name / table number.

Below is an example of what I am trying to generate...not sure if there is
a
function that will save me from manually typing middle section, and will
also
fit the data to the exact width of my column.

Mr. and Mrs. John Smith . . . . . . . . 14
Ms. Jane Doe . . . . . . . . . . . . . . . . . 5



"Jacob Skaria" wrote:

Try using REPT() function. The below will return 150 dots...I am not sure
whether this will be of help to you..

=REPT(".",150)


If this post helps click Yes
---------------
Jacob Skaria


"Kate" wrote:

Hello, I am trying to use Excel data to form a column for a seating
chart
that I am designing in Adobe Illustrator. I need the data within the
cell to
list the guest name (characters will vary) aligned to the left, a
series of
spaces and dots, followed by their table number - aligned to the right.

Is there a formula I can enter that will auto fill the appropriate #
spaces
and dots between the name and table number - so that I don't have to do
this
manually? I would like the end result to be one (or however many
necessary)
column / list that fills my column width precisely.

If no, do you have any other suggestions? My data is in Excel, but I
could
always import to other Office apps if needed.

Thanks so much!




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35,218
Default Function to autofill remaining width of a cell

I would think using the built in formatting for Tabs in MSWord would be easier
than using excel.



Kate wrote:

Hello, I am trying to use Excel data to form a column for a seating chart
that I am designing in Adobe Illustrator. I need the data within the cell to
list the guest name (characters will vary) aligned to the left, a series of
spaces and dots, followed by their table number - aligned to the right.

Is there a formula I can enter that will auto fill the appropriate # spaces
and dots between the name and table number - so that I don't have to do this
manually? I would like the end result to be one (or however many necessary)
column / list that fills my column width precisely.

If no, do you have any other suggestions? My data is in Excel, but I could
always import to other Office apps if needed.

Thanks so much!


--

Dave Peterson
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Change Cell Width WITHOUT changing Column width dww701 Excel Discussion (Misc queries) 1 January 12th 09 10:52 PM
Using IF function then Autofill-increments down a reference cell Twinspot Excel Worksheet Functions 2 November 26th 07 10:44 AM
I want to get remaining text after using LEFT function Munawar Amin Excel Worksheet Functions 3 November 6th 06 03:58 PM
How to make cell width different than the column width it lies in John Excel Discussion (Misc queries) 2 September 11th 06 10:41 PM
Is there a function to show if cell/row(X:Y) is hidden? or width? Joseph in Atlanta Excel Worksheet Functions 3 March 17th 06 05:57 AM


All times are GMT +1. The time now is 05:56 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"