+ Reply to Thread
Results 1 to 43 of 43

Text spacing in drop down lists

  1. #1
    Cathy Landry
    Guest

    Re: Text spacing in drop down lists

    If I have 1000 lines I will need to do that for each one?

    "Debra Dalgleish" wrote:

    > In your source list, press Alt + Enter where you want the lines to break
    > Then, in the cell that contains the dropdown list, choose Format>Cells
    > On the Alignment tab, add a check mark to Wrap Text, and click OK
    >
    > In the dropdown list, you'll see a box character where the line breaks
    > are, but they won't appear in the cell.
    >
    > Cathy Landry wrote:
    > > Hello,
    > >
    > > I have a drop down list that contains clinic name/address/city/st/zip/phone#
    > > in a merged cell. Is there anyway to format the spacing so that it will look
    > > like a proper ship-to address?
    > >
    > > Thank you
    > > Cathy

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >


  2. #2
    Debra Dalgleish
    Guest

    Re: Text spacing in drop down lists

    You could try the following in a copy of your data:

    Select the column of names/addresses
    Choose Edit>Replace
    In the Find What box, type a comma
    In the Replace With box, hold the Alt key, and on the number keypad
    type: 0010
    (you won't see anything in the Replace With box)
    Click the Replace All button
    Click OK to confirm the replacement
    Click Close


    Cathy Landry wrote:
    > Yes, they are all in one cell.
    >
    > Thank you!
    >
    > "Debra Dalgleish" wrote:
    >
    >
    >>In the source list, is each address all in one cell, or is it in several
    >>columns?
    >>
    >>If it's in columns, that you've concatenated for the dropdown, e.g.:
    >>
    >> =A2&", " & B2
    >>
    >>you could use the CHAR(10) function instead of commas, e.g.
    >>
    >> =A2&CHAR(10)&B2
    >>
    >>Cathy Landry wrote:
    >>
    >>>If I have 1000 lines I will need to do that for each one?
    >>>
    >>>"Debra Dalgleish" wrote:
    >>>
    >>>
    >>>
    >>>>In your source list, press Alt + Enter where you want the lines to break
    >>>>Then, in the cell that contains the dropdown list, choose Format>Cells
    >>>>On the Alignment tab, add a check mark to Wrap Text, and click OK
    >>>>
    >>>>In the dropdown list, you'll see a box character where the line breaks
    >>>>are, but they won't appear in the cell.
    >>>>
    >>>>Cathy Landry wrote:
    >>>>
    >>>>
    >>>>>Hello,
    >>>>>
    >>>>>I have a drop down list that contains clinic name/address/city/st/zip/phone#
    >>>>>in a merged cell. Is there anyway to format the spacing so that it will look
    >>>>>like a proper ship-to address?
    >>>>>
    >>>>>Thank you
    >>>>>Cathy
    >>>>
    >>>>
    >>>>--
    >>>>Debra Dalgleish
    >>>>Excel FAQ, Tips & Book List
    >>>>http://www.contextures.com/tiptech.html
    >>>>
    >>>>
    >>>

    >>
    >>--
    >>Debra Dalgleish
    >>Excel FAQ, Tips & Book List
    >>http://www.contextures.com/tiptech.html
    >>
    >>

    >



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  3. #3
    Cathy Landry
    Guest

    Re: Text spacing in drop down lists

    Yes, they are all in one cell.

    Thank you!

    "Debra Dalgleish" wrote:

    > In the source list, is each address all in one cell, or is it in several
    > columns?
    >
    > If it's in columns, that you've concatenated for the dropdown, e.g.:
    >
    > =A2&", " & B2
    >
    > you could use the CHAR(10) function instead of commas, e.g.
    >
    > =A2&CHAR(10)&B2
    >
    > Cathy Landry wrote:
    > > If I have 1000 lines I will need to do that for each one?
    > >
    > > "Debra Dalgleish" wrote:
    > >
    > >
    > >>In your source list, press Alt + Enter where you want the lines to break
    > >>Then, in the cell that contains the dropdown list, choose Format>Cells
    > >>On the Alignment tab, add a check mark to Wrap Text, and click OK
    > >>
    > >>In the dropdown list, you'll see a box character where the line breaks
    > >>are, but they won't appear in the cell.
    > >>
    > >>Cathy Landry wrote:
    > >>
    > >>>Hello,
    > >>>
    > >>>I have a drop down list that contains clinic name/address/city/st/zip/phone#
    > >>>in a merged cell. Is there anyway to format the spacing so that it will look
    > >>>like a proper ship-to address?
    > >>>
    > >>>Thank you
    > >>>Cathy
    > >>
    > >>
    > >>--
    > >>Debra Dalgleish
    > >>Excel FAQ, Tips & Book List
    > >>http://www.contextures.com/tiptech.html
    > >>
    > >>

    > >

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >


  4. #4
    Cathy Landry
    Guest

    Re: Text spacing in drop down lists

    It worked perfectly!!

    Thank you so much!

    "Debra Dalgleish" wrote:

    > You could try the following in a copy of your data:
    >
    > Select the column of names/addresses
    > Choose Edit>Replace
    > In the Find What box, type a comma
    > In the Replace With box, hold the Alt key, and on the number keypad
    > type: 0010
    > (you won't see anything in the Replace With box)
    > Click the Replace All button
    > Click OK to confirm the replacement
    > Click Close
    >
    >
    > Cathy Landry wrote:
    > > Yes, they are all in one cell.
    > >
    > > Thank you!
    > >
    > > "Debra Dalgleish" wrote:
    > >
    > >
    > >>In the source list, is each address all in one cell, or is it in several
    > >>columns?
    > >>
    > >>If it's in columns, that you've concatenated for the dropdown, e.g.:
    > >>
    > >> =A2&", " & B2
    > >>
    > >>you could use the CHAR(10) function instead of commas, e.g.
    > >>
    > >> =A2&CHAR(10)&B2
    > >>
    > >>Cathy Landry wrote:
    > >>
    > >>>If I have 1000 lines I will need to do that for each one?
    > >>>
    > >>>"Debra Dalgleish" wrote:
    > >>>
    > >>>
    > >>>
    > >>>>In your source list, press Alt + Enter where you want the lines to break
    > >>>>Then, in the cell that contains the dropdown list, choose Format>Cells
    > >>>>On the Alignment tab, add a check mark to Wrap Text, and click OK
    > >>>>
    > >>>>In the dropdown list, you'll see a box character where the line breaks
    > >>>>are, but they won't appear in the cell.
    > >>>>
    > >>>>Cathy Landry wrote:
    > >>>>
    > >>>>
    > >>>>>Hello,
    > >>>>>
    > >>>>>I have a drop down list that contains clinic name/address/city/st/zip/phone#
    > >>>>>in a merged cell. Is there anyway to format the spacing so that it will look
    > >>>>>like a proper ship-to address?
    > >>>>>
    > >>>>>Thank you
    > >>>>>Cathy
    > >>>>
    > >>>>
    > >>>>--
    > >>>>Debra Dalgleish
    > >>>>Excel FAQ, Tips & Book List
    > >>>>http://www.contextures.com/tiptech.html
    > >>>>
    > >>>>
    > >>>
    > >>
    > >>--
    > >>Debra Dalgleish
    > >>Excel FAQ, Tips & Book List
    > >>http://www.contextures.com/tiptech.html
    > >>
    > >>

    > >

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >


  5. #5
    Debra Dalgleish
    Guest

    Re: Text spacing in drop down lists

    You're welcome! Thanks for letting me know that it worked.

    Cathy Landry wrote:
    > It worked perfectly!!
    >
    > Thank you so much!
    >
    > "Debra Dalgleish" wrote:
    >
    >
    >>You could try the following in a copy of your data:
    >>
    >>Select the column of names/addresses
    >>Choose Edit>Replace
    >>In the Find What box, type a comma
    >>In the Replace With box, hold the Alt key, and on the number keypad
    >>type: 0010
    >> (you won't see anything in the Replace With box)
    >>Click the Replace All button
    >>Click OK to confirm the replacement
    >>Click Close
    >>
    >>
    >>Cathy Landry wrote:
    >>
    >>>Yes, they are all in one cell.
    >>>
    >>>Thank you!
    >>>
    >>>"Debra Dalgleish" wrote:
    >>>
    >>>
    >>>
    >>>>In the source list, is each address all in one cell, or is it in several
    >>>>columns?
    >>>>
    >>>>If it's in columns, that you've concatenated for the dropdown, e.g.:
    >>>>
    >>>> =A2&", " & B2
    >>>>
    >>>>you could use the CHAR(10) function instead of commas, e.g.
    >>>>
    >>>> =A2&CHAR(10)&B2
    >>>>
    >>>>Cathy Landry wrote:
    >>>>
    >>>>
    >>>>>If I have 1000 lines I will need to do that for each one?
    >>>>>
    >>>>>"Debra Dalgleish" wrote:
    >>>>>
    >>>>>
    >>>>>
    >>>>>
    >>>>>>In your source list, press Alt + Enter where you want the lines to break
    >>>>>>Then, in the cell that contains the dropdown list, choose Format>Cells
    >>>>>>On the Alignment tab, add a check mark to Wrap Text, and click OK
    >>>>>>
    >>>>>>In the dropdown list, you'll see a box character where the line breaks
    >>>>>>are, but they won't appear in the cell.
    >>>>>>
    >>>>>>Cathy Landry wrote:
    >>>>>>
    >>>>>>
    >>>>>>
    >>>>>>>Hello,
    >>>>>>>
    >>>>>>>I have a drop down list that contains clinic name/address/city/st/zip/phone#
    >>>>>>>in a merged cell. Is there anyway to format the spacing so that it will look
    >>>>>>>like a proper ship-to address?
    >>>>>>>
    >>>>>>>Thank you
    >>>>>>>Cathy
    >>>>>>
    >>>>>>
    >>>>>>--
    >>>>>>Debra Dalgleish
    >>>>>>Excel FAQ, Tips & Book List
    >>>>>>http://www.contextures.com/tiptech.html
    >>>>>>
    >>>>>>
    >>>>>
    >>>>--
    >>>>Debra Dalgleish
    >>>>Excel FAQ, Tips & Book List
    >>>>http://www.contextures.com/tiptech.html
    >>>>
    >>>>
    >>>

    >>
    >>--
    >>Debra Dalgleish
    >>Excel FAQ, Tips & Book List
    >>http://www.contextures.com/tiptech.html
    >>
    >>

    >



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  6. #6
    Debra Dalgleish
    Guest

    Re: Text spacing in drop down lists

    In the source list, is each address all in one cell, or is it in several
    columns?

    If it's in columns, that you've concatenated for the dropdown, e.g.:

    =A2&", " & B2

    you could use the CHAR(10) function instead of commas, e.g.

    =A2&CHAR(10)&B2

    Cathy Landry wrote:
    > If I have 1000 lines I will need to do that for each one?
    >
    > "Debra Dalgleish" wrote:
    >
    >
    >>In your source list, press Alt + Enter where you want the lines to break
    >>Then, in the cell that contains the dropdown list, choose Format>Cells
    >>On the Alignment tab, add a check mark to Wrap Text, and click OK
    >>
    >>In the dropdown list, you'll see a box character where the line breaks
    >>are, but they won't appear in the cell.
    >>
    >>Cathy Landry wrote:
    >>
    >>>Hello,
    >>>
    >>>I have a drop down list that contains clinic name/address/city/st/zip/phone#
    >>>in a merged cell. Is there anyway to format the spacing so that it will look
    >>>like a proper ship-to address?
    >>>
    >>>Thank you
    >>>Cathy

    >>
    >>
    >>--
    >>Debra Dalgleish
    >>Excel FAQ, Tips & Book List
    >>http://www.contextures.com/tiptech.html
    >>
    >>

    >



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  7. #7
    Debra Dalgleish
    Guest

    Re: Text spacing in drop down lists

    In your source list, press Alt + Enter where you want the lines to break
    Then, in the cell that contains the dropdown list, choose Format>Cells
    On the Alignment tab, add a check mark to Wrap Text, and click OK

    In the dropdown list, you'll see a box character where the line breaks
    are, but they won't appear in the cell.

    Cathy Landry wrote:
    > Hello,
    >
    > I have a drop down list that contains clinic name/address/city/st/zip/phone#
    > in a merged cell. Is there anyway to format the spacing so that it will look
    > like a proper ship-to address?
    >
    > Thank you
    > Cathy



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  8. #8
    Cathy Landry
    Guest

    Re: Text spacing in drop down lists

    If I have 1000 lines I will need to do that for each one?

    "Debra Dalgleish" wrote:

    > In your source list, press Alt + Enter where you want the lines to break
    > Then, in the cell that contains the dropdown list, choose Format>Cells
    > On the Alignment tab, add a check mark to Wrap Text, and click OK
    >
    > In the dropdown list, you'll see a box character where the line breaks
    > are, but they won't appear in the cell.
    >
    > Cathy Landry wrote:
    > > Hello,
    > >
    > > I have a drop down list that contains clinic name/address/city/st/zip/phone#
    > > in a merged cell. Is there anyway to format the spacing so that it will look
    > > like a proper ship-to address?
    > >
    > > Thank you
    > > Cathy

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >


  9. #9
    Debra Dalgleish
    Guest

    Re: Text spacing in drop down lists

    You're welcome! Thanks for letting me know that it worked.

    Cathy Landry wrote:
    > It worked perfectly!!
    >
    > Thank you so much!
    >
    > "Debra Dalgleish" wrote:
    >
    >
    >>You could try the following in a copy of your data:
    >>
    >>Select the column of names/addresses
    >>Choose Edit>Replace
    >>In the Find What box, type a comma
    >>In the Replace With box, hold the Alt key, and on the number keypad
    >>type: 0010
    >> (you won't see anything in the Replace With box)
    >>Click the Replace All button
    >>Click OK to confirm the replacement
    >>Click Close
    >>
    >>
    >>Cathy Landry wrote:
    >>
    >>>Yes, they are all in one cell.
    >>>
    >>>Thank you!
    >>>
    >>>"Debra Dalgleish" wrote:
    >>>
    >>>
    >>>
    >>>>In the source list, is each address all in one cell, or is it in several
    >>>>columns?
    >>>>
    >>>>If it's in columns, that you've concatenated for the dropdown, e.g.:
    >>>>
    >>>> =A2&", " & B2
    >>>>
    >>>>you could use the CHAR(10) function instead of commas, e.g.
    >>>>
    >>>> =A2&CHAR(10)&B2
    >>>>
    >>>>Cathy Landry wrote:
    >>>>
    >>>>
    >>>>>If I have 1000 lines I will need to do that for each one?
    >>>>>
    >>>>>"Debra Dalgleish" wrote:
    >>>>>
    >>>>>
    >>>>>
    >>>>>
    >>>>>>In your source list, press Alt + Enter where you want the lines to break
    >>>>>>Then, in the cell that contains the dropdown list, choose Format>Cells
    >>>>>>On the Alignment tab, add a check mark to Wrap Text, and click OK
    >>>>>>
    >>>>>>In the dropdown list, you'll see a box character where the line breaks
    >>>>>>are, but they won't appear in the cell.
    >>>>>>
    >>>>>>Cathy Landry wrote:
    >>>>>>
    >>>>>>
    >>>>>>
    >>>>>>>Hello,
    >>>>>>>
    >>>>>>>I have a drop down list that contains clinic name/address/city/st/zip/phone#
    >>>>>>>in a merged cell. Is there anyway to format the spacing so that it will look
    >>>>>>>like a proper ship-to address?
    >>>>>>>
    >>>>>>>Thank you
    >>>>>>>Cathy
    >>>>>>
    >>>>>>
    >>>>>>--
    >>>>>>Debra Dalgleish
    >>>>>>Excel FAQ, Tips & Book List
    >>>>>>http://www.contextures.com/tiptech.html
    >>>>>>
    >>>>>>
    >>>>>
    >>>>--
    >>>>Debra Dalgleish
    >>>>Excel FAQ, Tips & Book List
    >>>>http://www.contextures.com/tiptech.html
    >>>>
    >>>>
    >>>

    >>
    >>--
    >>Debra Dalgleish
    >>Excel FAQ, Tips & Book List
    >>http://www.contextures.com/tiptech.html
    >>
    >>

    >



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  10. #10
    Debra Dalgleish
    Guest

    Re: Text spacing in drop down lists

    In your source list, press Alt + Enter where you want the lines to break
    Then, in the cell that contains the dropdown list, choose Format>Cells
    On the Alignment tab, add a check mark to Wrap Text, and click OK

    In the dropdown list, you'll see a box character where the line breaks
    are, but they won't appear in the cell.

    Cathy Landry wrote:
    > Hello,
    >
    > I have a drop down list that contains clinic name/address/city/st/zip/phone#
    > in a merged cell. Is there anyway to format the spacing so that it will look
    > like a proper ship-to address?
    >
    > Thank you
    > Cathy



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  11. #11
    Debra Dalgleish
    Guest

    Re: Text spacing in drop down lists

    In the source list, is each address all in one cell, or is it in several
    columns?

    If it's in columns, that you've concatenated for the dropdown, e.g.:

    =A2&", " & B2

    you could use the CHAR(10) function instead of commas, e.g.

    =A2&CHAR(10)&B2

    Cathy Landry wrote:
    > If I have 1000 lines I will need to do that for each one?
    >
    > "Debra Dalgleish" wrote:
    >
    >
    >>In your source list, press Alt + Enter where you want the lines to break
    >>Then, in the cell that contains the dropdown list, choose Format>Cells
    >>On the Alignment tab, add a check mark to Wrap Text, and click OK
    >>
    >>In the dropdown list, you'll see a box character where the line breaks
    >>are, but they won't appear in the cell.
    >>
    >>Cathy Landry wrote:
    >>
    >>>Hello,
    >>>
    >>>I have a drop down list that contains clinic name/address/city/st/zip/phone#
    >>>in a merged cell. Is there anyway to format the spacing so that it will look
    >>>like a proper ship-to address?
    >>>
    >>>Thank you
    >>>Cathy

    >>
    >>
    >>--
    >>Debra Dalgleish
    >>Excel FAQ, Tips & Book List
    >>http://www.contextures.com/tiptech.html
    >>
    >>

    >



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  12. #12
    Cathy Landry
    Guest

    Re: Text spacing in drop down lists

    It worked perfectly!!

    Thank you so much!

    "Debra Dalgleish" wrote:

    > You could try the following in a copy of your data:
    >
    > Select the column of names/addresses
    > Choose Edit>Replace
    > In the Find What box, type a comma
    > In the Replace With box, hold the Alt key, and on the number keypad
    > type: 0010
    > (you won't see anything in the Replace With box)
    > Click the Replace All button
    > Click OK to confirm the replacement
    > Click Close
    >
    >
    > Cathy Landry wrote:
    > > Yes, they are all in one cell.
    > >
    > > Thank you!
    > >
    > > "Debra Dalgleish" wrote:
    > >
    > >
    > >>In the source list, is each address all in one cell, or is it in several
    > >>columns?
    > >>
    > >>If it's in columns, that you've concatenated for the dropdown, e.g.:
    > >>
    > >> =A2&", " & B2
    > >>
    > >>you could use the CHAR(10) function instead of commas, e.g.
    > >>
    > >> =A2&CHAR(10)&B2
    > >>
    > >>Cathy Landry wrote:
    > >>
    > >>>If I have 1000 lines I will need to do that for each one?
    > >>>
    > >>>"Debra Dalgleish" wrote:
    > >>>
    > >>>
    > >>>
    > >>>>In your source list, press Alt + Enter where you want the lines to break
    > >>>>Then, in the cell that contains the dropdown list, choose Format>Cells
    > >>>>On the Alignment tab, add a check mark to Wrap Text, and click OK
    > >>>>
    > >>>>In the dropdown list, you'll see a box character where the line breaks
    > >>>>are, but they won't appear in the cell.
    > >>>>
    > >>>>Cathy Landry wrote:
    > >>>>
    > >>>>
    > >>>>>Hello,
    > >>>>>
    > >>>>>I have a drop down list that contains clinic name/address/city/st/zip/phone#
    > >>>>>in a merged cell. Is there anyway to format the spacing so that it will look
    > >>>>>like a proper ship-to address?
    > >>>>>
    > >>>>>Thank you
    > >>>>>Cathy
    > >>>>
    > >>>>
    > >>>>--
    > >>>>Debra Dalgleish
    > >>>>Excel FAQ, Tips & Book List
    > >>>>http://www.contextures.com/tiptech.html
    > >>>>
    > >>>>
    > >>>
    > >>
    > >>--
    > >>Debra Dalgleish
    > >>Excel FAQ, Tips & Book List
    > >>http://www.contextures.com/tiptech.html
    > >>
    > >>

    > >

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >


  13. #13
    Debra Dalgleish
    Guest

    Re: Text spacing in drop down lists

    You could try the following in a copy of your data:

    Select the column of names/addresses
    Choose Edit>Replace
    In the Find What box, type a comma
    In the Replace With box, hold the Alt key, and on the number keypad
    type: 0010
    (you won't see anything in the Replace With box)
    Click the Replace All button
    Click OK to confirm the replacement
    Click Close


    Cathy Landry wrote:
    > Yes, they are all in one cell.
    >
    > Thank you!
    >
    > "Debra Dalgleish" wrote:
    >
    >
    >>In the source list, is each address all in one cell, or is it in several
    >>columns?
    >>
    >>If it's in columns, that you've concatenated for the dropdown, e.g.:
    >>
    >> =A2&", " & B2
    >>
    >>you could use the CHAR(10) function instead of commas, e.g.
    >>
    >> =A2&CHAR(10)&B2
    >>
    >>Cathy Landry wrote:
    >>
    >>>If I have 1000 lines I will need to do that for each one?
    >>>
    >>>"Debra Dalgleish" wrote:
    >>>
    >>>
    >>>
    >>>>In your source list, press Alt + Enter where you want the lines to break
    >>>>Then, in the cell that contains the dropdown list, choose Format>Cells
    >>>>On the Alignment tab, add a check mark to Wrap Text, and click OK
    >>>>
    >>>>In the dropdown list, you'll see a box character where the line breaks
    >>>>are, but they won't appear in the cell.
    >>>>
    >>>>Cathy Landry wrote:
    >>>>
    >>>>
    >>>>>Hello,
    >>>>>
    >>>>>I have a drop down list that contains clinic name/address/city/st/zip/phone#
    >>>>>in a merged cell. Is there anyway to format the spacing so that it will look
    >>>>>like a proper ship-to address?
    >>>>>
    >>>>>Thank you
    >>>>>Cathy
    >>>>
    >>>>
    >>>>--
    >>>>Debra Dalgleish
    >>>>Excel FAQ, Tips & Book List
    >>>>http://www.contextures.com/tiptech.html
    >>>>
    >>>>
    >>>

    >>
    >>--
    >>Debra Dalgleish
    >>Excel FAQ, Tips & Book List
    >>http://www.contextures.com/tiptech.html
    >>
    >>

    >



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  14. #14
    Cathy Landry
    Guest

    Re: Text spacing in drop down lists

    Yes, they are all in one cell.

    Thank you!

    "Debra Dalgleish" wrote:

    > In the source list, is each address all in one cell, or is it in several
    > columns?
    >
    > If it's in columns, that you've concatenated for the dropdown, e.g.:
    >
    > =A2&", " & B2
    >
    > you could use the CHAR(10) function instead of commas, e.g.
    >
    > =A2&CHAR(10)&B2
    >
    > Cathy Landry wrote:
    > > If I have 1000 lines I will need to do that for each one?
    > >
    > > "Debra Dalgleish" wrote:
    > >
    > >
    > >>In your source list, press Alt + Enter where you want the lines to break
    > >>Then, in the cell that contains the dropdown list, choose Format>Cells
    > >>On the Alignment tab, add a check mark to Wrap Text, and click OK
    > >>
    > >>In the dropdown list, you'll see a box character where the line breaks
    > >>are, but they won't appear in the cell.
    > >>
    > >>Cathy Landry wrote:
    > >>
    > >>>Hello,
    > >>>
    > >>>I have a drop down list that contains clinic name/address/city/st/zip/phone#
    > >>>in a merged cell. Is there anyway to format the spacing so that it will look
    > >>>like a proper ship-to address?
    > >>>
    > >>>Thank you
    > >>>Cathy
    > >>
    > >>
    > >>--
    > >>Debra Dalgleish
    > >>Excel FAQ, Tips & Book List
    > >>http://www.contextures.com/tiptech.html
    > >>
    > >>

    > >

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >


  15. #15
    Debra Dalgleish
    Guest

    Re: Text spacing in drop down lists

    In the source list, is each address all in one cell, or is it in several
    columns?

    If it's in columns, that you've concatenated for the dropdown, e.g.:

    =A2&", " & B2

    you could use the CHAR(10) function instead of commas, e.g.

    =A2&CHAR(10)&B2

    Cathy Landry wrote:
    > If I have 1000 lines I will need to do that for each one?
    >
    > "Debra Dalgleish" wrote:
    >
    >
    >>In your source list, press Alt + Enter where you want the lines to break
    >>Then, in the cell that contains the dropdown list, choose Format>Cells
    >>On the Alignment tab, add a check mark to Wrap Text, and click OK
    >>
    >>In the dropdown list, you'll see a box character where the line breaks
    >>are, but they won't appear in the cell.
    >>
    >>Cathy Landry wrote:
    >>
    >>>Hello,
    >>>
    >>>I have a drop down list that contains clinic name/address/city/st/zip/phone#
    >>>in a merged cell. Is there anyway to format the spacing so that it will look
    >>>like a proper ship-to address?
    >>>
    >>>Thank you
    >>>Cathy

    >>
    >>
    >>--
    >>Debra Dalgleish
    >>Excel FAQ, Tips & Book List
    >>http://www.contextures.com/tiptech.html
    >>
    >>

    >



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  16. #16
    Cathy Landry
    Guest

    Re: Text spacing in drop down lists

    If I have 1000 lines I will need to do that for each one?

    "Debra Dalgleish" wrote:

    > In your source list, press Alt + Enter where you want the lines to break
    > Then, in the cell that contains the dropdown list, choose Format>Cells
    > On the Alignment tab, add a check mark to Wrap Text, and click OK
    >
    > In the dropdown list, you'll see a box character where the line breaks
    > are, but they won't appear in the cell.
    >
    > Cathy Landry wrote:
    > > Hello,
    > >
    > > I have a drop down list that contains clinic name/address/city/st/zip/phone#
    > > in a merged cell. Is there anyway to format the spacing so that it will look
    > > like a proper ship-to address?
    > >
    > > Thank you
    > > Cathy

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >


  17. #17
    Debra Dalgleish
    Guest

    Re: Text spacing in drop down lists

    In your source list, press Alt + Enter where you want the lines to break
    Then, in the cell that contains the dropdown list, choose Format>Cells
    On the Alignment tab, add a check mark to Wrap Text, and click OK

    In the dropdown list, you'll see a box character where the line breaks
    are, but they won't appear in the cell.

    Cathy Landry wrote:
    > Hello,
    >
    > I have a drop down list that contains clinic name/address/city/st/zip/phone#
    > in a merged cell. Is there anyway to format the spacing so that it will look
    > like a proper ship-to address?
    >
    > Thank you
    > Cathy



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  18. #18
    Debra Dalgleish
    Guest

    Re: Text spacing in drop down lists

    You're welcome! Thanks for letting me know that it worked.

    Cathy Landry wrote:
    > It worked perfectly!!
    >
    > Thank you so much!
    >
    > "Debra Dalgleish" wrote:
    >
    >
    >>You could try the following in a copy of your data:
    >>
    >>Select the column of names/addresses
    >>Choose Edit>Replace
    >>In the Find What box, type a comma
    >>In the Replace With box, hold the Alt key, and on the number keypad
    >>type: 0010
    >> (you won't see anything in the Replace With box)
    >>Click the Replace All button
    >>Click OK to confirm the replacement
    >>Click Close
    >>
    >>
    >>Cathy Landry wrote:
    >>
    >>>Yes, they are all in one cell.
    >>>
    >>>Thank you!
    >>>
    >>>"Debra Dalgleish" wrote:
    >>>
    >>>
    >>>
    >>>>In the source list, is each address all in one cell, or is it in several
    >>>>columns?
    >>>>
    >>>>If it's in columns, that you've concatenated for the dropdown, e.g.:
    >>>>
    >>>> =A2&", " & B2
    >>>>
    >>>>you could use the CHAR(10) function instead of commas, e.g.
    >>>>
    >>>> =A2&CHAR(10)&B2
    >>>>
    >>>>Cathy Landry wrote:
    >>>>
    >>>>
    >>>>>If I have 1000 lines I will need to do that for each one?
    >>>>>
    >>>>>"Debra Dalgleish" wrote:
    >>>>>
    >>>>>
    >>>>>
    >>>>>
    >>>>>>In your source list, press Alt + Enter where you want the lines to break
    >>>>>>Then, in the cell that contains the dropdown list, choose Format>Cells
    >>>>>>On the Alignment tab, add a check mark to Wrap Text, and click OK
    >>>>>>
    >>>>>>In the dropdown list, you'll see a box character where the line breaks
    >>>>>>are, but they won't appear in the cell.
    >>>>>>
    >>>>>>Cathy Landry wrote:
    >>>>>>
    >>>>>>
    >>>>>>
    >>>>>>>Hello,
    >>>>>>>
    >>>>>>>I have a drop down list that contains clinic name/address/city/st/zip/phone#
    >>>>>>>in a merged cell. Is there anyway to format the spacing so that it will look
    >>>>>>>like a proper ship-to address?
    >>>>>>>
    >>>>>>>Thank you
    >>>>>>>Cathy
    >>>>>>
    >>>>>>
    >>>>>>--
    >>>>>>Debra Dalgleish
    >>>>>>Excel FAQ, Tips & Book List
    >>>>>>http://www.contextures.com/tiptech.html
    >>>>>>
    >>>>>>
    >>>>>
    >>>>--
    >>>>Debra Dalgleish
    >>>>Excel FAQ, Tips & Book List
    >>>>http://www.contextures.com/tiptech.html
    >>>>
    >>>>
    >>>

    >>
    >>--
    >>Debra Dalgleish
    >>Excel FAQ, Tips & Book List
    >>http://www.contextures.com/tiptech.html
    >>
    >>

    >



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  19. #19
    Cathy Landry
    Guest

    Re: Text spacing in drop down lists

    Yes, they are all in one cell.

    Thank you!

    "Debra Dalgleish" wrote:

    > In the source list, is each address all in one cell, or is it in several
    > columns?
    >
    > If it's in columns, that you've concatenated for the dropdown, e.g.:
    >
    > =A2&", " & B2
    >
    > you could use the CHAR(10) function instead of commas, e.g.
    >
    > =A2&CHAR(10)&B2
    >
    > Cathy Landry wrote:
    > > If I have 1000 lines I will need to do that for each one?
    > >
    > > "Debra Dalgleish" wrote:
    > >
    > >
    > >>In your source list, press Alt + Enter where you want the lines to break
    > >>Then, in the cell that contains the dropdown list, choose Format>Cells
    > >>On the Alignment tab, add a check mark to Wrap Text, and click OK
    > >>
    > >>In the dropdown list, you'll see a box character where the line breaks
    > >>are, but they won't appear in the cell.
    > >>
    > >>Cathy Landry wrote:
    > >>
    > >>>Hello,
    > >>>
    > >>>I have a drop down list that contains clinic name/address/city/st/zip/phone#
    > >>>in a merged cell. Is there anyway to format the spacing so that it will look
    > >>>like a proper ship-to address?
    > >>>
    > >>>Thank you
    > >>>Cathy
    > >>
    > >>
    > >>--
    > >>Debra Dalgleish
    > >>Excel FAQ, Tips & Book List
    > >>http://www.contextures.com/tiptech.html
    > >>
    > >>

    > >

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >


  20. #20
    Debra Dalgleish
    Guest

    Re: Text spacing in drop down lists

    You could try the following in a copy of your data:

    Select the column of names/addresses
    Choose Edit>Replace
    In the Find What box, type a comma
    In the Replace With box, hold the Alt key, and on the number keypad
    type: 0010
    (you won't see anything in the Replace With box)
    Click the Replace All button
    Click OK to confirm the replacement
    Click Close


    Cathy Landry wrote:
    > Yes, they are all in one cell.
    >
    > Thank you!
    >
    > "Debra Dalgleish" wrote:
    >
    >
    >>In the source list, is each address all in one cell, or is it in several
    >>columns?
    >>
    >>If it's in columns, that you've concatenated for the dropdown, e.g.:
    >>
    >> =A2&", " & B2
    >>
    >>you could use the CHAR(10) function instead of commas, e.g.
    >>
    >> =A2&CHAR(10)&B2
    >>
    >>Cathy Landry wrote:
    >>
    >>>If I have 1000 lines I will need to do that for each one?
    >>>
    >>>"Debra Dalgleish" wrote:
    >>>
    >>>
    >>>
    >>>>In your source list, press Alt + Enter where you want the lines to break
    >>>>Then, in the cell that contains the dropdown list, choose Format>Cells
    >>>>On the Alignment tab, add a check mark to Wrap Text, and click OK
    >>>>
    >>>>In the dropdown list, you'll see a box character where the line breaks
    >>>>are, but they won't appear in the cell.
    >>>>
    >>>>Cathy Landry wrote:
    >>>>
    >>>>
    >>>>>Hello,
    >>>>>
    >>>>>I have a drop down list that contains clinic name/address/city/st/zip/phone#
    >>>>>in a merged cell. Is there anyway to format the spacing so that it will look
    >>>>>like a proper ship-to address?
    >>>>>
    >>>>>Thank you
    >>>>>Cathy
    >>>>
    >>>>
    >>>>--
    >>>>Debra Dalgleish
    >>>>Excel FAQ, Tips & Book List
    >>>>http://www.contextures.com/tiptech.html
    >>>>
    >>>>
    >>>

    >>
    >>--
    >>Debra Dalgleish
    >>Excel FAQ, Tips & Book List
    >>http://www.contextures.com/tiptech.html
    >>
    >>

    >



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  21. #21
    Cathy Landry
    Guest

    Re: Text spacing in drop down lists

    It worked perfectly!!

    Thank you so much!

    "Debra Dalgleish" wrote:

    > You could try the following in a copy of your data:
    >
    > Select the column of names/addresses
    > Choose Edit>Replace
    > In the Find What box, type a comma
    > In the Replace With box, hold the Alt key, and on the number keypad
    > type: 0010
    > (you won't see anything in the Replace With box)
    > Click the Replace All button
    > Click OK to confirm the replacement
    > Click Close
    >
    >
    > Cathy Landry wrote:
    > > Yes, they are all in one cell.
    > >
    > > Thank you!
    > >
    > > "Debra Dalgleish" wrote:
    > >
    > >
    > >>In the source list, is each address all in one cell, or is it in several
    > >>columns?
    > >>
    > >>If it's in columns, that you've concatenated for the dropdown, e.g.:
    > >>
    > >> =A2&", " & B2
    > >>
    > >>you could use the CHAR(10) function instead of commas, e.g.
    > >>
    > >> =A2&CHAR(10)&B2
    > >>
    > >>Cathy Landry wrote:
    > >>
    > >>>If I have 1000 lines I will need to do that for each one?
    > >>>
    > >>>"Debra Dalgleish" wrote:
    > >>>
    > >>>
    > >>>
    > >>>>In your source list, press Alt + Enter where you want the lines to break
    > >>>>Then, in the cell that contains the dropdown list, choose Format>Cells
    > >>>>On the Alignment tab, add a check mark to Wrap Text, and click OK
    > >>>>
    > >>>>In the dropdown list, you'll see a box character where the line breaks
    > >>>>are, but they won't appear in the cell.
    > >>>>
    > >>>>Cathy Landry wrote:
    > >>>>
    > >>>>
    > >>>>>Hello,
    > >>>>>
    > >>>>>I have a drop down list that contains clinic name/address/city/st/zip/phone#
    > >>>>>in a merged cell. Is there anyway to format the spacing so that it will look
    > >>>>>like a proper ship-to address?
    > >>>>>
    > >>>>>Thank you
    > >>>>>Cathy
    > >>>>
    > >>>>
    > >>>>--
    > >>>>Debra Dalgleish
    > >>>>Excel FAQ, Tips & Book List
    > >>>>http://www.contextures.com/tiptech.html
    > >>>>
    > >>>>
    > >>>
    > >>
    > >>--
    > >>Debra Dalgleish
    > >>Excel FAQ, Tips & Book List
    > >>http://www.contextures.com/tiptech.html
    > >>
    > >>

    > >

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >


  22. #22
    Cathy Landry
    Guest

    Re: Text spacing in drop down lists

    Yes, they are all in one cell.

    Thank you!

    "Debra Dalgleish" wrote:

    > In the source list, is each address all in one cell, or is it in several
    > columns?
    >
    > If it's in columns, that you've concatenated for the dropdown, e.g.:
    >
    > =A2&", " & B2
    >
    > you could use the CHAR(10) function instead of commas, e.g.
    >
    > =A2&CHAR(10)&B2
    >
    > Cathy Landry wrote:
    > > If I have 1000 lines I will need to do that for each one?
    > >
    > > "Debra Dalgleish" wrote:
    > >
    > >
    > >>In your source list, press Alt + Enter where you want the lines to break
    > >>Then, in the cell that contains the dropdown list, choose Format>Cells
    > >>On the Alignment tab, add a check mark to Wrap Text, and click OK
    > >>
    > >>In the dropdown list, you'll see a box character where the line breaks
    > >>are, but they won't appear in the cell.
    > >>
    > >>Cathy Landry wrote:
    > >>
    > >>>Hello,
    > >>>
    > >>>I have a drop down list that contains clinic name/address/city/st/zip/phone#
    > >>>in a merged cell. Is there anyway to format the spacing so that it will look
    > >>>like a proper ship-to address?
    > >>>
    > >>>Thank you
    > >>>Cathy
    > >>
    > >>
    > >>--
    > >>Debra Dalgleish
    > >>Excel FAQ, Tips & Book List
    > >>http://www.contextures.com/tiptech.html
    > >>
    > >>

    > >

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >


  23. #23
    Debra Dalgleish
    Guest

    Re: Text spacing in drop down lists

    You could try the following in a copy of your data:

    Select the column of names/addresses
    Choose Edit>Replace
    In the Find What box, type a comma
    In the Replace With box, hold the Alt key, and on the number keypad
    type: 0010
    (you won't see anything in the Replace With box)
    Click the Replace All button
    Click OK to confirm the replacement
    Click Close


    Cathy Landry wrote:
    > Yes, they are all in one cell.
    >
    > Thank you!
    >
    > "Debra Dalgleish" wrote:
    >
    >
    >>In the source list, is each address all in one cell, or is it in several
    >>columns?
    >>
    >>If it's in columns, that you've concatenated for the dropdown, e.g.:
    >>
    >> =A2&", " & B2
    >>
    >>you could use the CHAR(10) function instead of commas, e.g.
    >>
    >> =A2&CHAR(10)&B2
    >>
    >>Cathy Landry wrote:
    >>
    >>>If I have 1000 lines I will need to do that for each one?
    >>>
    >>>"Debra Dalgleish" wrote:
    >>>
    >>>
    >>>
    >>>>In your source list, press Alt + Enter where you want the lines to break
    >>>>Then, in the cell that contains the dropdown list, choose Format>Cells
    >>>>On the Alignment tab, add a check mark to Wrap Text, and click OK
    >>>>
    >>>>In the dropdown list, you'll see a box character where the line breaks
    >>>>are, but they won't appear in the cell.
    >>>>
    >>>>Cathy Landry wrote:
    >>>>
    >>>>
    >>>>>Hello,
    >>>>>
    >>>>>I have a drop down list that contains clinic name/address/city/st/zip/phone#
    >>>>>in a merged cell. Is there anyway to format the spacing so that it will look
    >>>>>like a proper ship-to address?
    >>>>>
    >>>>>Thank you
    >>>>>Cathy
    >>>>
    >>>>
    >>>>--
    >>>>Debra Dalgleish
    >>>>Excel FAQ, Tips & Book List
    >>>>http://www.contextures.com/tiptech.html
    >>>>
    >>>>
    >>>

    >>
    >>--
    >>Debra Dalgleish
    >>Excel FAQ, Tips & Book List
    >>http://www.contextures.com/tiptech.html
    >>
    >>

    >



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  24. #24
    Cathy Landry
    Guest

    Re: Text spacing in drop down lists

    If I have 1000 lines I will need to do that for each one?

    "Debra Dalgleish" wrote:

    > In your source list, press Alt + Enter where you want the lines to break
    > Then, in the cell that contains the dropdown list, choose Format>Cells
    > On the Alignment tab, add a check mark to Wrap Text, and click OK
    >
    > In the dropdown list, you'll see a box character where the line breaks
    > are, but they won't appear in the cell.
    >
    > Cathy Landry wrote:
    > > Hello,
    > >
    > > I have a drop down list that contains clinic name/address/city/st/zip/phone#
    > > in a merged cell. Is there anyway to format the spacing so that it will look
    > > like a proper ship-to address?
    > >
    > > Thank you
    > > Cathy

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >


  25. #25
    Debra Dalgleish
    Guest

    Re: Text spacing in drop down lists

    In your source list, press Alt + Enter where you want the lines to break
    Then, in the cell that contains the dropdown list, choose Format>Cells
    On the Alignment tab, add a check mark to Wrap Text, and click OK

    In the dropdown list, you'll see a box character where the line breaks
    are, but they won't appear in the cell.

    Cathy Landry wrote:
    > Hello,
    >
    > I have a drop down list that contains clinic name/address/city/st/zip/phone#
    > in a merged cell. Is there anyway to format the spacing so that it will look
    > like a proper ship-to address?
    >
    > Thank you
    > Cathy



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  26. #26
    Cathy Landry
    Guest

    Re: Text spacing in drop down lists

    It worked perfectly!!

    Thank you so much!

    "Debra Dalgleish" wrote:

    > You could try the following in a copy of your data:
    >
    > Select the column of names/addresses
    > Choose Edit>Replace
    > In the Find What box, type a comma
    > In the Replace With box, hold the Alt key, and on the number keypad
    > type: 0010
    > (you won't see anything in the Replace With box)
    > Click the Replace All button
    > Click OK to confirm the replacement
    > Click Close
    >
    >
    > Cathy Landry wrote:
    > > Yes, they are all in one cell.
    > >
    > > Thank you!
    > >
    > > "Debra Dalgleish" wrote:
    > >
    > >
    > >>In the source list, is each address all in one cell, or is it in several
    > >>columns?
    > >>
    > >>If it's in columns, that you've concatenated for the dropdown, e.g.:
    > >>
    > >> =A2&", " & B2
    > >>
    > >>you could use the CHAR(10) function instead of commas, e.g.
    > >>
    > >> =A2&CHAR(10)&B2
    > >>
    > >>Cathy Landry wrote:
    > >>
    > >>>If I have 1000 lines I will need to do that for each one?
    > >>>
    > >>>"Debra Dalgleish" wrote:
    > >>>
    > >>>
    > >>>
    > >>>>In your source list, press Alt + Enter where you want the lines to break
    > >>>>Then, in the cell that contains the dropdown list, choose Format>Cells
    > >>>>On the Alignment tab, add a check mark to Wrap Text, and click OK
    > >>>>
    > >>>>In the dropdown list, you'll see a box character where the line breaks
    > >>>>are, but they won't appear in the cell.
    > >>>>
    > >>>>Cathy Landry wrote:
    > >>>>
    > >>>>
    > >>>>>Hello,
    > >>>>>
    > >>>>>I have a drop down list that contains clinic name/address/city/st/zip/phone#
    > >>>>>in a merged cell. Is there anyway to format the spacing so that it will look
    > >>>>>like a proper ship-to address?
    > >>>>>
    > >>>>>Thank you
    > >>>>>Cathy
    > >>>>
    > >>>>
    > >>>>--
    > >>>>Debra Dalgleish
    > >>>>Excel FAQ, Tips & Book List
    > >>>>http://www.contextures.com/tiptech.html
    > >>>>
    > >>>>
    > >>>
    > >>
    > >>--
    > >>Debra Dalgleish
    > >>Excel FAQ, Tips & Book List
    > >>http://www.contextures.com/tiptech.html
    > >>
    > >>

    > >

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >


  27. #27
    Debra Dalgleish
    Guest

    Re: Text spacing in drop down lists

    You're welcome! Thanks for letting me know that it worked.

    Cathy Landry wrote:
    > It worked perfectly!!
    >
    > Thank you so much!
    >
    > "Debra Dalgleish" wrote:
    >
    >
    >>You could try the following in a copy of your data:
    >>
    >>Select the column of names/addresses
    >>Choose Edit>Replace
    >>In the Find What box, type a comma
    >>In the Replace With box, hold the Alt key, and on the number keypad
    >>type: 0010
    >> (you won't see anything in the Replace With box)
    >>Click the Replace All button
    >>Click OK to confirm the replacement
    >>Click Close
    >>
    >>
    >>Cathy Landry wrote:
    >>
    >>>Yes, they are all in one cell.
    >>>
    >>>Thank you!
    >>>
    >>>"Debra Dalgleish" wrote:
    >>>
    >>>
    >>>
    >>>>In the source list, is each address all in one cell, or is it in several
    >>>>columns?
    >>>>
    >>>>If it's in columns, that you've concatenated for the dropdown, e.g.:
    >>>>
    >>>> =A2&", " & B2
    >>>>
    >>>>you could use the CHAR(10) function instead of commas, e.g.
    >>>>
    >>>> =A2&CHAR(10)&B2
    >>>>
    >>>>Cathy Landry wrote:
    >>>>
    >>>>
    >>>>>If I have 1000 lines I will need to do that for each one?
    >>>>>
    >>>>>"Debra Dalgleish" wrote:
    >>>>>
    >>>>>
    >>>>>
    >>>>>
    >>>>>>In your source list, press Alt + Enter where you want the lines to break
    >>>>>>Then, in the cell that contains the dropdown list, choose Format>Cells
    >>>>>>On the Alignment tab, add a check mark to Wrap Text, and click OK
    >>>>>>
    >>>>>>In the dropdown list, you'll see a box character where the line breaks
    >>>>>>are, but they won't appear in the cell.
    >>>>>>
    >>>>>>Cathy Landry wrote:
    >>>>>>
    >>>>>>
    >>>>>>
    >>>>>>>Hello,
    >>>>>>>
    >>>>>>>I have a drop down list that contains clinic name/address/city/st/zip/phone#
    >>>>>>>in a merged cell. Is there anyway to format the spacing so that it will look
    >>>>>>>like a proper ship-to address?
    >>>>>>>
    >>>>>>>Thank you
    >>>>>>>Cathy
    >>>>>>
    >>>>>>
    >>>>>>--
    >>>>>>Debra Dalgleish
    >>>>>>Excel FAQ, Tips & Book List
    >>>>>>http://www.contextures.com/tiptech.html
    >>>>>>
    >>>>>>
    >>>>>
    >>>>--
    >>>>Debra Dalgleish
    >>>>Excel FAQ, Tips & Book List
    >>>>http://www.contextures.com/tiptech.html
    >>>>
    >>>>
    >>>

    >>
    >>--
    >>Debra Dalgleish
    >>Excel FAQ, Tips & Book List
    >>http://www.contextures.com/tiptech.html
    >>
    >>

    >



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  28. #28
    Debra Dalgleish
    Guest

    Re: Text spacing in drop down lists

    In the source list, is each address all in one cell, or is it in several
    columns?

    If it's in columns, that you've concatenated for the dropdown, e.g.:

    =A2&", " & B2

    you could use the CHAR(10) function instead of commas, e.g.

    =A2&CHAR(10)&B2

    Cathy Landry wrote:
    > If I have 1000 lines I will need to do that for each one?
    >
    > "Debra Dalgleish" wrote:
    >
    >
    >>In your source list, press Alt + Enter where you want the lines to break
    >>Then, in the cell that contains the dropdown list, choose Format>Cells
    >>On the Alignment tab, add a check mark to Wrap Text, and click OK
    >>
    >>In the dropdown list, you'll see a box character where the line breaks
    >>are, but they won't appear in the cell.
    >>
    >>Cathy Landry wrote:
    >>
    >>>Hello,
    >>>
    >>>I have a drop down list that contains clinic name/address/city/st/zip/phone#
    >>>in a merged cell. Is there anyway to format the spacing so that it will look
    >>>like a proper ship-to address?
    >>>
    >>>Thank you
    >>>Cathy

    >>
    >>
    >>--
    >>Debra Dalgleish
    >>Excel FAQ, Tips & Book List
    >>http://www.contextures.com/tiptech.html
    >>
    >>

    >



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  29. #29
    Debra Dalgleish
    Guest

    Re: Text spacing in drop down lists

    In the source list, is each address all in one cell, or is it in several
    columns?

    If it's in columns, that you've concatenated for the dropdown, e.g.:

    =A2&", " & B2

    you could use the CHAR(10) function instead of commas, e.g.

    =A2&CHAR(10)&B2

    Cathy Landry wrote:
    > If I have 1000 lines I will need to do that for each one?
    >
    > "Debra Dalgleish" wrote:
    >
    >
    >>In your source list, press Alt + Enter where you want the lines to break
    >>Then, in the cell that contains the dropdown list, choose Format>Cells
    >>On the Alignment tab, add a check mark to Wrap Text, and click OK
    >>
    >>In the dropdown list, you'll see a box character where the line breaks
    >>are, but they won't appear in the cell.
    >>
    >>Cathy Landry wrote:
    >>
    >>>Hello,
    >>>
    >>>I have a drop down list that contains clinic name/address/city/st/zip/phone#
    >>>in a merged cell. Is there anyway to format the spacing so that it will look
    >>>like a proper ship-to address?
    >>>
    >>>Thank you
    >>>Cathy

    >>
    >>
    >>--
    >>Debra Dalgleish
    >>Excel FAQ, Tips & Book List
    >>http://www.contextures.com/tiptech.html
    >>
    >>

    >



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  30. #30
    Cathy Landry
    Guest

    Re: Text spacing in drop down lists

    If I have 1000 lines I will need to do that for each one?

    "Debra Dalgleish" wrote:

    > In your source list, press Alt + Enter where you want the lines to break
    > Then, in the cell that contains the dropdown list, choose Format>Cells
    > On the Alignment tab, add a check mark to Wrap Text, and click OK
    >
    > In the dropdown list, you'll see a box character where the line breaks
    > are, but they won't appear in the cell.
    >
    > Cathy Landry wrote:
    > > Hello,
    > >
    > > I have a drop down list that contains clinic name/address/city/st/zip/phone#
    > > in a merged cell. Is there anyway to format the spacing so that it will look
    > > like a proper ship-to address?
    > >
    > > Thank you
    > > Cathy

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >


  31. #31
    Debra Dalgleish
    Guest

    Re: Text spacing in drop down lists

    You're welcome! Thanks for letting me know that it worked.

    Cathy Landry wrote:
    > It worked perfectly!!
    >
    > Thank you so much!
    >
    > "Debra Dalgleish" wrote:
    >
    >
    >>You could try the following in a copy of your data:
    >>
    >>Select the column of names/addresses
    >>Choose Edit>Replace
    >>In the Find What box, type a comma
    >>In the Replace With box, hold the Alt key, and on the number keypad
    >>type: 0010
    >> (you won't see anything in the Replace With box)
    >>Click the Replace All button
    >>Click OK to confirm the replacement
    >>Click Close
    >>
    >>
    >>Cathy Landry wrote:
    >>
    >>>Yes, they are all in one cell.
    >>>
    >>>Thank you!
    >>>
    >>>"Debra Dalgleish" wrote:
    >>>
    >>>
    >>>
    >>>>In the source list, is each address all in one cell, or is it in several
    >>>>columns?
    >>>>
    >>>>If it's in columns, that you've concatenated for the dropdown, e.g.:
    >>>>
    >>>> =A2&", " & B2
    >>>>
    >>>>you could use the CHAR(10) function instead of commas, e.g.
    >>>>
    >>>> =A2&CHAR(10)&B2
    >>>>
    >>>>Cathy Landry wrote:
    >>>>
    >>>>
    >>>>>If I have 1000 lines I will need to do that for each one?
    >>>>>
    >>>>>"Debra Dalgleish" wrote:
    >>>>>
    >>>>>
    >>>>>
    >>>>>
    >>>>>>In your source list, press Alt + Enter where you want the lines to break
    >>>>>>Then, in the cell that contains the dropdown list, choose Format>Cells
    >>>>>>On the Alignment tab, add a check mark to Wrap Text, and click OK
    >>>>>>
    >>>>>>In the dropdown list, you'll see a box character where the line breaks
    >>>>>>are, but they won't appear in the cell.
    >>>>>>
    >>>>>>Cathy Landry wrote:
    >>>>>>
    >>>>>>
    >>>>>>
    >>>>>>>Hello,
    >>>>>>>
    >>>>>>>I have a drop down list that contains clinic name/address/city/st/zip/phone#
    >>>>>>>in a merged cell. Is there anyway to format the spacing so that it will look
    >>>>>>>like a proper ship-to address?
    >>>>>>>
    >>>>>>>Thank you
    >>>>>>>Cathy
    >>>>>>
    >>>>>>
    >>>>>>--
    >>>>>>Debra Dalgleish
    >>>>>>Excel FAQ, Tips & Book List
    >>>>>>http://www.contextures.com/tiptech.html
    >>>>>>
    >>>>>>
    >>>>>
    >>>>--
    >>>>Debra Dalgleish
    >>>>Excel FAQ, Tips & Book List
    >>>>http://www.contextures.com/tiptech.html
    >>>>
    >>>>
    >>>

    >>
    >>--
    >>Debra Dalgleish
    >>Excel FAQ, Tips & Book List
    >>http://www.contextures.com/tiptech.html
    >>
    >>

    >



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  32. #32
    Debra Dalgleish
    Guest

    Re: Text spacing in drop down lists

    In your source list, press Alt + Enter where you want the lines to break
    Then, in the cell that contains the dropdown list, choose Format>Cells
    On the Alignment tab, add a check mark to Wrap Text, and click OK

    In the dropdown list, you'll see a box character where the line breaks
    are, but they won't appear in the cell.

    Cathy Landry wrote:
    > Hello,
    >
    > I have a drop down list that contains clinic name/address/city/st/zip/phone#
    > in a merged cell. Is there anyway to format the spacing so that it will look
    > like a proper ship-to address?
    >
    > Thank you
    > Cathy



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  33. #33
    Cathy Landry
    Guest

    Re: Text spacing in drop down lists

    It worked perfectly!!

    Thank you so much!

    "Debra Dalgleish" wrote:

    > You could try the following in a copy of your data:
    >
    > Select the column of names/addresses
    > Choose Edit>Replace
    > In the Find What box, type a comma
    > In the Replace With box, hold the Alt key, and on the number keypad
    > type: 0010
    > (you won't see anything in the Replace With box)
    > Click the Replace All button
    > Click OK to confirm the replacement
    > Click Close
    >
    >
    > Cathy Landry wrote:
    > > Yes, they are all in one cell.
    > >
    > > Thank you!
    > >
    > > "Debra Dalgleish" wrote:
    > >
    > >
    > >>In the source list, is each address all in one cell, or is it in several
    > >>columns?
    > >>
    > >>If it's in columns, that you've concatenated for the dropdown, e.g.:
    > >>
    > >> =A2&", " & B2
    > >>
    > >>you could use the CHAR(10) function instead of commas, e.g.
    > >>
    > >> =A2&CHAR(10)&B2
    > >>
    > >>Cathy Landry wrote:
    > >>
    > >>>If I have 1000 lines I will need to do that for each one?
    > >>>
    > >>>"Debra Dalgleish" wrote:
    > >>>
    > >>>
    > >>>
    > >>>>In your source list, press Alt + Enter where you want the lines to break
    > >>>>Then, in the cell that contains the dropdown list, choose Format>Cells
    > >>>>On the Alignment tab, add a check mark to Wrap Text, and click OK
    > >>>>
    > >>>>In the dropdown list, you'll see a box character where the line breaks
    > >>>>are, but they won't appear in the cell.
    > >>>>
    > >>>>Cathy Landry wrote:
    > >>>>
    > >>>>
    > >>>>>Hello,
    > >>>>>
    > >>>>>I have a drop down list that contains clinic name/address/city/st/zip/phone#
    > >>>>>in a merged cell. Is there anyway to format the spacing so that it will look
    > >>>>>like a proper ship-to address?
    > >>>>>
    > >>>>>Thank you
    > >>>>>Cathy
    > >>>>
    > >>>>
    > >>>>--
    > >>>>Debra Dalgleish
    > >>>>Excel FAQ, Tips & Book List
    > >>>>http://www.contextures.com/tiptech.html
    > >>>>
    > >>>>
    > >>>
    > >>
    > >>--
    > >>Debra Dalgleish
    > >>Excel FAQ, Tips & Book List
    > >>http://www.contextures.com/tiptech.html
    > >>
    > >>

    > >

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >


  34. #34
    Cathy Landry
    Guest

    Re: Text spacing in drop down lists

    Yes, they are all in one cell.

    Thank you!

    "Debra Dalgleish" wrote:

    > In the source list, is each address all in one cell, or is it in several
    > columns?
    >
    > If it's in columns, that you've concatenated for the dropdown, e.g.:
    >
    > =A2&", " & B2
    >
    > you could use the CHAR(10) function instead of commas, e.g.
    >
    > =A2&CHAR(10)&B2
    >
    > Cathy Landry wrote:
    > > If I have 1000 lines I will need to do that for each one?
    > >
    > > "Debra Dalgleish" wrote:
    > >
    > >
    > >>In your source list, press Alt + Enter where you want the lines to break
    > >>Then, in the cell that contains the dropdown list, choose Format>Cells
    > >>On the Alignment tab, add a check mark to Wrap Text, and click OK
    > >>
    > >>In the dropdown list, you'll see a box character where the line breaks
    > >>are, but they won't appear in the cell.
    > >>
    > >>Cathy Landry wrote:
    > >>
    > >>>Hello,
    > >>>
    > >>>I have a drop down list that contains clinic name/address/city/st/zip/phone#
    > >>>in a merged cell. Is there anyway to format the spacing so that it will look
    > >>>like a proper ship-to address?
    > >>>
    > >>>Thank you
    > >>>Cathy
    > >>
    > >>
    > >>--
    > >>Debra Dalgleish
    > >>Excel FAQ, Tips & Book List
    > >>http://www.contextures.com/tiptech.html
    > >>
    > >>

    > >

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >


  35. #35
    Debra Dalgleish
    Guest

    Re: Text spacing in drop down lists

    You could try the following in a copy of your data:

    Select the column of names/addresses
    Choose Edit>Replace
    In the Find What box, type a comma
    In the Replace With box, hold the Alt key, and on the number keypad
    type: 0010
    (you won't see anything in the Replace With box)
    Click the Replace All button
    Click OK to confirm the replacement
    Click Close


    Cathy Landry wrote:
    > Yes, they are all in one cell.
    >
    > Thank you!
    >
    > "Debra Dalgleish" wrote:
    >
    >
    >>In the source list, is each address all in one cell, or is it in several
    >>columns?
    >>
    >>If it's in columns, that you've concatenated for the dropdown, e.g.:
    >>
    >> =A2&", " & B2
    >>
    >>you could use the CHAR(10) function instead of commas, e.g.
    >>
    >> =A2&CHAR(10)&B2
    >>
    >>Cathy Landry wrote:
    >>
    >>>If I have 1000 lines I will need to do that for each one?
    >>>
    >>>"Debra Dalgleish" wrote:
    >>>
    >>>
    >>>
    >>>>In your source list, press Alt + Enter where you want the lines to break
    >>>>Then, in the cell that contains the dropdown list, choose Format>Cells
    >>>>On the Alignment tab, add a check mark to Wrap Text, and click OK
    >>>>
    >>>>In the dropdown list, you'll see a box character where the line breaks
    >>>>are, but they won't appear in the cell.
    >>>>
    >>>>Cathy Landry wrote:
    >>>>
    >>>>
    >>>>>Hello,
    >>>>>
    >>>>>I have a drop down list that contains clinic name/address/city/st/zip/phone#
    >>>>>in a merged cell. Is there anyway to format the spacing so that it will look
    >>>>>like a proper ship-to address?
    >>>>>
    >>>>>Thank you
    >>>>>Cathy
    >>>>
    >>>>
    >>>>--
    >>>>Debra Dalgleish
    >>>>Excel FAQ, Tips & Book List
    >>>>http://www.contextures.com/tiptech.html
    >>>>
    >>>>
    >>>

    >>
    >>--
    >>Debra Dalgleish
    >>Excel FAQ, Tips & Book List
    >>http://www.contextures.com/tiptech.html
    >>
    >>

    >



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  36. #36
    Cathy Landry
    Guest

    Re: Text spacing in drop down lists

    If I have 1000 lines I will need to do that for each one?

    "Debra Dalgleish" wrote:

    > In your source list, press Alt + Enter where you want the lines to break
    > Then, in the cell that contains the dropdown list, choose Format>Cells
    > On the Alignment tab, add a check mark to Wrap Text, and click OK
    >
    > In the dropdown list, you'll see a box character where the line breaks
    > are, but they won't appear in the cell.
    >
    > Cathy Landry wrote:
    > > Hello,
    > >
    > > I have a drop down list that contains clinic name/address/city/st/zip/phone#
    > > in a merged cell. Is there anyway to format the spacing so that it will look
    > > like a proper ship-to address?
    > >
    > > Thank you
    > > Cathy

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >


  37. #37
    Cathy Landry
    Guest

    Text spacing in drop down lists

    Hello,

    I have a drop down list that contains clinic name/address/city/st/zip/phone#
    in a merged cell. Is there anyway to format the spacing so that it will look
    like a proper ship-to address?

    Thank you
    Cathy

  38. #38
    Debra Dalgleish
    Guest

    Re: Text spacing in drop down lists

    In your source list, press Alt + Enter where you want the lines to break
    Then, in the cell that contains the dropdown list, choose Format>Cells
    On the Alignment tab, add a check mark to Wrap Text, and click OK

    In the dropdown list, you'll see a box character where the line breaks
    are, but they won't appear in the cell.

    Cathy Landry wrote:
    > Hello,
    >
    > I have a drop down list that contains clinic name/address/city/st/zip/phone#
    > in a merged cell. Is there anyway to format the spacing so that it will look
    > like a proper ship-to address?
    >
    > Thank you
    > Cathy



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  39. #39
    Debra Dalgleish
    Guest

    Re: Text spacing in drop down lists

    You're welcome! Thanks for letting me know that it worked.

    Cathy Landry wrote:
    > It worked perfectly!!
    >
    > Thank you so much!
    >
    > "Debra Dalgleish" wrote:
    >
    >
    >>You could try the following in a copy of your data:
    >>
    >>Select the column of names/addresses
    >>Choose Edit>Replace
    >>In the Find What box, type a comma
    >>In the Replace With box, hold the Alt key, and on the number keypad
    >>type: 0010
    >> (you won't see anything in the Replace With box)
    >>Click the Replace All button
    >>Click OK to confirm the replacement
    >>Click Close
    >>
    >>
    >>Cathy Landry wrote:
    >>
    >>>Yes, they are all in one cell.
    >>>
    >>>Thank you!
    >>>
    >>>"Debra Dalgleish" wrote:
    >>>
    >>>
    >>>
    >>>>In the source list, is each address all in one cell, or is it in several
    >>>>columns?
    >>>>
    >>>>If it's in columns, that you've concatenated for the dropdown, e.g.:
    >>>>
    >>>> =A2&", " & B2
    >>>>
    >>>>you could use the CHAR(10) function instead of commas, e.g.
    >>>>
    >>>> =A2&CHAR(10)&B2
    >>>>
    >>>>Cathy Landry wrote:
    >>>>
    >>>>
    >>>>>If I have 1000 lines I will need to do that for each one?
    >>>>>
    >>>>>"Debra Dalgleish" wrote:
    >>>>>
    >>>>>
    >>>>>
    >>>>>
    >>>>>>In your source list, press Alt + Enter where you want the lines to break
    >>>>>>Then, in the cell that contains the dropdown list, choose Format>Cells
    >>>>>>On the Alignment tab, add a check mark to Wrap Text, and click OK
    >>>>>>
    >>>>>>In the dropdown list, you'll see a box character where the line breaks
    >>>>>>are, but they won't appear in the cell.
    >>>>>>
    >>>>>>Cathy Landry wrote:
    >>>>>>
    >>>>>>
    >>>>>>
    >>>>>>>Hello,
    >>>>>>>
    >>>>>>>I have a drop down list that contains clinic name/address/city/st/zip/phone#
    >>>>>>>in a merged cell. Is there anyway to format the spacing so that it will look
    >>>>>>>like a proper ship-to address?
    >>>>>>>
    >>>>>>>Thank you
    >>>>>>>Cathy
    >>>>>>
    >>>>>>
    >>>>>>--
    >>>>>>Debra Dalgleish
    >>>>>>Excel FAQ, Tips & Book List
    >>>>>>http://www.contextures.com/tiptech.html
    >>>>>>
    >>>>>>
    >>>>>
    >>>>--
    >>>>Debra Dalgleish
    >>>>Excel FAQ, Tips & Book List
    >>>>http://www.contextures.com/tiptech.html
    >>>>
    >>>>
    >>>

    >>
    >>--
    >>Debra Dalgleish
    >>Excel FAQ, Tips & Book List
    >>http://www.contextures.com/tiptech.html
    >>
    >>

    >



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  40. #40
    Debra Dalgleish
    Guest

    Re: Text spacing in drop down lists

    In the source list, is each address all in one cell, or is it in several
    columns?

    If it's in columns, that you've concatenated for the dropdown, e.g.:

    =A2&", " & B2

    you could use the CHAR(10) function instead of commas, e.g.

    =A2&CHAR(10)&B2

    Cathy Landry wrote:
    > If I have 1000 lines I will need to do that for each one?
    >
    > "Debra Dalgleish" wrote:
    >
    >
    >>In your source list, press Alt + Enter where you want the lines to break
    >>Then, in the cell that contains the dropdown list, choose Format>Cells
    >>On the Alignment tab, add a check mark to Wrap Text, and click OK
    >>
    >>In the dropdown list, you'll see a box character where the line breaks
    >>are, but they won't appear in the cell.
    >>
    >>Cathy Landry wrote:
    >>
    >>>Hello,
    >>>
    >>>I have a drop down list that contains clinic name/address/city/st/zip/phone#
    >>>in a merged cell. Is there anyway to format the spacing so that it will look
    >>>like a proper ship-to address?
    >>>
    >>>Thank you
    >>>Cathy

    >>
    >>
    >>--
    >>Debra Dalgleish
    >>Excel FAQ, Tips & Book List
    >>http://www.contextures.com/tiptech.html
    >>
    >>

    >



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  41. #41
    Cathy Landry
    Guest

    Re: Text spacing in drop down lists

    It worked perfectly!!

    Thank you so much!

    "Debra Dalgleish" wrote:

    > You could try the following in a copy of your data:
    >
    > Select the column of names/addresses
    > Choose Edit>Replace
    > In the Find What box, type a comma
    > In the Replace With box, hold the Alt key, and on the number keypad
    > type: 0010
    > (you won't see anything in the Replace With box)
    > Click the Replace All button
    > Click OK to confirm the replacement
    > Click Close
    >
    >
    > Cathy Landry wrote:
    > > Yes, they are all in one cell.
    > >
    > > Thank you!
    > >
    > > "Debra Dalgleish" wrote:
    > >
    > >
    > >>In the source list, is each address all in one cell, or is it in several
    > >>columns?
    > >>
    > >>If it's in columns, that you've concatenated for the dropdown, e.g.:
    > >>
    > >> =A2&", " & B2
    > >>
    > >>you could use the CHAR(10) function instead of commas, e.g.
    > >>
    > >> =A2&CHAR(10)&B2
    > >>
    > >>Cathy Landry wrote:
    > >>
    > >>>If I have 1000 lines I will need to do that for each one?
    > >>>
    > >>>"Debra Dalgleish" wrote:
    > >>>
    > >>>
    > >>>
    > >>>>In your source list, press Alt + Enter where you want the lines to break
    > >>>>Then, in the cell that contains the dropdown list, choose Format>Cells
    > >>>>On the Alignment tab, add a check mark to Wrap Text, and click OK
    > >>>>
    > >>>>In the dropdown list, you'll see a box character where the line breaks
    > >>>>are, but they won't appear in the cell.
    > >>>>
    > >>>>Cathy Landry wrote:
    > >>>>
    > >>>>
    > >>>>>Hello,
    > >>>>>
    > >>>>>I have a drop down list that contains clinic name/address/city/st/zip/phone#
    > >>>>>in a merged cell. Is there anyway to format the spacing so that it will look
    > >>>>>like a proper ship-to address?
    > >>>>>
    > >>>>>Thank you
    > >>>>>Cathy
    > >>>>
    > >>>>
    > >>>>--
    > >>>>Debra Dalgleish
    > >>>>Excel FAQ, Tips & Book List
    > >>>>http://www.contextures.com/tiptech.html
    > >>>>
    > >>>>
    > >>>
    > >>
    > >>--
    > >>Debra Dalgleish
    > >>Excel FAQ, Tips & Book List
    > >>http://www.contextures.com/tiptech.html
    > >>
    > >>

    > >

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >


  42. #42
    Cathy Landry
    Guest

    Re: Text spacing in drop down lists

    Yes, they are all in one cell.

    Thank you!

    "Debra Dalgleish" wrote:

    > In the source list, is each address all in one cell, or is it in several
    > columns?
    >
    > If it's in columns, that you've concatenated for the dropdown, e.g.:
    >
    > =A2&", " & B2
    >
    > you could use the CHAR(10) function instead of commas, e.g.
    >
    > =A2&CHAR(10)&B2
    >
    > Cathy Landry wrote:
    > > If I have 1000 lines I will need to do that for each one?
    > >
    > > "Debra Dalgleish" wrote:
    > >
    > >
    > >>In your source list, press Alt + Enter where you want the lines to break
    > >>Then, in the cell that contains the dropdown list, choose Format>Cells
    > >>On the Alignment tab, add a check mark to Wrap Text, and click OK
    > >>
    > >>In the dropdown list, you'll see a box character where the line breaks
    > >>are, but they won't appear in the cell.
    > >>
    > >>Cathy Landry wrote:
    > >>
    > >>>Hello,
    > >>>
    > >>>I have a drop down list that contains clinic name/address/city/st/zip/phone#
    > >>>in a merged cell. Is there anyway to format the spacing so that it will look
    > >>>like a proper ship-to address?
    > >>>
    > >>>Thank you
    > >>>Cathy
    > >>
    > >>
    > >>--
    > >>Debra Dalgleish
    > >>Excel FAQ, Tips & Book List
    > >>http://www.contextures.com/tiptech.html
    > >>
    > >>

    > >

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >


  43. #43
    Debra Dalgleish
    Guest

    Re: Text spacing in drop down lists

    You could try the following in a copy of your data:

    Select the column of names/addresses
    Choose Edit>Replace
    In the Find What box, type a comma
    In the Replace With box, hold the Alt key, and on the number keypad
    type: 0010
    (you won't see anything in the Replace With box)
    Click the Replace All button
    Click OK to confirm the replacement
    Click Close


    Cathy Landry wrote:
    > Yes, they are all in one cell.
    >
    > Thank you!
    >
    > "Debra Dalgleish" wrote:
    >
    >
    >>In the source list, is each address all in one cell, or is it in several
    >>columns?
    >>
    >>If it's in columns, that you've concatenated for the dropdown, e.g.:
    >>
    >> =A2&", " & B2
    >>
    >>you could use the CHAR(10) function instead of commas, e.g.
    >>
    >> =A2&CHAR(10)&B2
    >>
    >>Cathy Landry wrote:
    >>
    >>>If I have 1000 lines I will need to do that for each one?
    >>>
    >>>"Debra Dalgleish" wrote:
    >>>
    >>>
    >>>
    >>>>In your source list, press Alt + Enter where you want the lines to break
    >>>>Then, in the cell that contains the dropdown list, choose Format>Cells
    >>>>On the Alignment tab, add a check mark to Wrap Text, and click OK
    >>>>
    >>>>In the dropdown list, you'll see a box character where the line breaks
    >>>>are, but they won't appear in the cell.
    >>>>
    >>>>Cathy Landry wrote:
    >>>>
    >>>>
    >>>>>Hello,
    >>>>>
    >>>>>I have a drop down list that contains clinic name/address/city/st/zip/phone#
    >>>>>in a merged cell. Is there anyway to format the spacing so that it will look
    >>>>>like a proper ship-to address?
    >>>>>
    >>>>>Thank you
    >>>>>Cathy
    >>>>
    >>>>
    >>>>--
    >>>>Debra Dalgleish
    >>>>Excel FAQ, Tips & Book List
    >>>>http://www.contextures.com/tiptech.html
    >>>>
    >>>>
    >>>

    >>
    >>--
    >>Debra Dalgleish
    >>Excel FAQ, Tips & Book List
    >>http://www.contextures.com/tiptech.html
    >>
    >>

    >



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1