Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming,microsoft.public.excel.misc,microsoft.public.outlook
external usenet poster
 
Posts: 49
Default Boxes in my addresses

Hi

i am inserting an address from outlook into excel by selecting the
chossen address through a combobox.

The address is all in one cell and has a box after each line.

How do i get rid of the boxes?

Thanks for any help in advance.

  #2   Report Post  
Posted to microsoft.public.excel.programming,microsoft.public.excel.misc,microsoft.public.outlook
external usenet poster
 
Posts: 161
Default Boxes in my addresses

"Oggy" wrote in message
ups.com...
Hi

i am inserting an address from outlook into excel by selecting the
chossen address through a combobox.

The address is all in one cell and has a box after each line.

How do i get rid of the boxes?

Thanks for any help in advance.



this is really an Excel question not Outlook. Select the box, copy, and do a
find and replace, replacing the box with nothing.


  #3   Report Post  
Posted to microsoft.public.excel.misc,microsoft.public.excel.programming,microsoft.public.outlook
external usenet poster
 
Posts: 318
Default Boxes in my addresses

When the strings are concatenated into an Excel Cell using vbcrlf then the
strings do go into different lines but there appears a box at the end of the
lines. Use vblf instead.

Experiment by using the Immediate window to do the following

Cells(1,1).value = "a" & vbcrlf & "b"
Cells(1,1).value = "a" & vblf & "b"

This might be the issue when you are moving the data into Excel.

Alok

"Oggy" wrote:

Hi

i am inserting an address from outlook into excel by selecting the
chossen address through a combobox.

The address is all in one cell and has a box after each line.

How do i get rid of the boxes?

Thanks for any help in advance.


  #4   Report Post  
Posted to microsoft.public.excel.misc,microsoft.public.excel.programming,microsoft.public.outlook
external usenet poster
 
Posts: 15
Default Boxes in my addresses


Also see Eric Legault's handy tip for an Excel formula to break up the lines -- http://blogs.officezealot.com/legaul...4/08/4502.aspx

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx

"Alok" wrote in message ...
When the strings are concatenated into an Excel Cell using vbcrlf then the
strings do go into different lines but there appears a box at the end of the
lines. Use vblf instead.

Experiment by using the Immediate window to do the following

Cells(1,1).value = "a" & vbcrlf & "b"
Cells(1,1).value = "a" & vblf & "b"

This might be the issue when you are moving the data into Excel.

Alok

"Oggy" wrote:

Hi

i am inserting an address from outlook into excel by selecting the
chossen address through a combobox.

The address is all in one cell and has a box after each line.

How do i get rid of the boxes?

Thanks for any help in advance.


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
Check Boxes MACAVITY500 Excel Discussion (Misc queries) 4 November 18th 06 11:45 PM
Data validation boxes, outputting a final number from the boxes MDH Excel Discussion (Misc queries) 1 November 16th 06 12:41 AM
count ticks in boxes Adrian Excel Discussion (Misc queries) 2 April 18th 06 01:16 PM
Boxes in Forms PaulW Excel Discussion (Misc queries) 0 March 10th 06 03:18 PM
check boxes - copy MarkT Excel Discussion (Misc queries) 2 October 20th 05 04:33 PM


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

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"