LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default MACRO - Unmerge cells and delete blank columns, leaving data colum

Hello,

I am pulling out of Business Objects reports in excel, unfortunately the
reports come out almost normal. By abnormal I mean thet the various cells of
data are made of several merged columns. I need to write a macro to
automatically unmerge all cells in the sheet and then remove all blank
columns, leaving only the columns with data. As you all know, when unmerging
you get 1 column with the data (the 1st column) then the rest of the columns
of the merge remain blank, those I need to have removed - in an automatical
manner.
I did manage to find over the internet a macro which partially solves my
problem, but with a twist: instead of deleting the blank column it just
copies the data from the 1st cell to the rest (unerged cells). See the code
below. If anyone has any idea on how to modify this macro or a whole
different solution please assist / help me.

Sub TestUnmerge3()
Dim i As Long, n As Long
ReDim ay(1, 0)

With ActiveSheet.UsedRange
For i = 1 To .Count
If .Cells(i).MergeArea.Count 1 Then
If .Cells(i) < "" Then ' And .Cells(i).HasFormula = False '?
n = n + 1
ReDim Preserve ay(1, n)
ay(0, n) = .Cells(i).MergeArea.Address

ay(1, n) = .Cells(i).Value

End If
End If
Next
..UnMerge
End With
For i = 1 To n
Range(ay(0, i)).Value = ay(1, i)
Next
End Sub
 
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
Deleting blank cells AFTER an UNMERGE Troy Excel Discussion (Misc queries) 1 April 25th 08 09:12 PM
Auto Delete Columns in a Macro that are Blank dkeglor Excel Discussion (Misc queries) 1 October 31st 07 01:28 AM
Colouring Ranges & Leaving Cells Blank klam Excel Discussion (Misc queries) 1 May 2nd 07 03:45 PM
macro to unmerge columns HankY Excel Discussion (Misc queries) 2 December 8th 05 06:04 AM
Formula to delete blank cells across multiple columns? SamFunMail Excel Worksheet Functions 2 September 1st 05 07:05 AM


All times are GMT +1. The time now is 07:21 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"