Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default excel - data merger in two cells


I have a data spread in a column upto 1000 cells (A1 to
A1000). I need to merge data from two consecutive cells
(for exapmle A1 and A2; A3 and A4, and so on) into one
cell for all of them.

I would appreicate if a formula is avilable in Excel.

thanks
Babu


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default excel - data merger in two cells

Sub AAAA()
Dim i As Long
Application.DisplayAlerts = False
For i = 1 To 1000 Step 2
Cells(i, 1).Resize(2).Merge
Next
Application.DisplayAlerts = True
End Sub


--
Regards,
Tom Ogilvy



"babu" wrote in message
...

I have a data spread in a column upto 1000 cells (A1 to
A1000). I need to merge data from two consecutive cells
(for exapmle A1 and A2; A3 and A4, and so on) into one
cell for all of them.

I would appreicate if a formula is avilable in Excel.

thanks
Babu




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
Merger SQL Query into EXCEL Karthik Excel Discussion (Misc queries) 0 February 11th 09 02:34 AM
Excel merger bartwine Excel Discussion (Misc queries) 0 November 8th 05 09:16 PM
mail merger in excel gautam Excel Discussion (Misc queries) 1 October 24th 05 01:30 PM
Merger Two Data Sheet Charles Excel Discussion (Misc queries) 2 March 18th 05 03:35 PM
excel - data merger in two cells babu Excel Programming 1 July 8th 04 03:59 PM


All times are GMT +1. The time now is 07:12 AM.

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

About Us

"It's about Microsoft Excel"