How Can I - Move

sallyholly

New Member
Joined
Apr 19, 2013
Messages
17
Hello,

I wonder if there's an easy way for me to move certain text in column B, to go beneath headings in column A... Sometimes the text in column B appears on the same line as the Heading in Column A, sometimes a row down, sometimes there is one line in Column B, sometimes up to twenty and there are a lot of headings! Hope you can see what I mean by this....


<tbody>
</tbody>
Heading 1Text for 1
Text for 1
Text for 1
Heading 2
text for 2
text for 2
Heading 3
text for 3

<tbody>
</tbody>

I would like it to end up looking like this...


Heading 1
Text for 1
Text for 1
Text for 1
Heading 2
text for 2
text for 2
Heading 3
text for 3

<tbody>
</tbody>

I would also like to format the headings only to underline and bold but not the text (although this isn't as important as aligning).

Thank you in anticipation.
 
Last edited:

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Try this for results on sheet2.
Code:
[COLOR="Navy"]Sub[/COLOR] MG28Aug31
[COLOR="Navy"]Dim[/COLOR] Rng [COLOR="Navy"]As[/COLOR] Range, Dn [COLOR="Navy"]As[/COLOR] Range, c [COLOR="Navy"]As[/COLOR] [COLOR="Navy"]Long,[/COLOR] Fd [COLOR="Navy"]As[/COLOR] Boolean
[COLOR="Navy"]Set[/COLOR] Rng = Range("A1", Range("B" & Rows.Count).End(xlUp))
MsgBox Rng.Address
ReDim Ray(1 To Rng.Count * 2)
[COLOR="Navy"]For[/COLOR] [COLOR="Navy"]Each[/COLOR] Dn [COLOR="Navy"]In[/COLOR] Rng
    [COLOR="Navy"]If[/COLOR] Not IsEmpty(Dn.Value) [COLOR="Navy"]Then[/COLOR]
        c = c + 1
        [COLOR="Navy"]If[/COLOR] c > 1 And Dn.Column = 1 [COLOR="Navy"]Then[/COLOR] c = c + 1
            Ray(c) = Dn.Value
        [COLOR="Navy"]End[/COLOR] If
[COLOR="Navy"]Next[/COLOR] Dn
[COLOR="Navy"]Set[/COLOR] Rng = Sheets("Sheet2").Range("a1").Resize(c, 1)
Rng.Value = Application.Transpose(Ray)


[COLOR="Navy"]For[/COLOR] [COLOR="Navy"]Each[/COLOR] Dn [COLOR="Navy"]In[/COLOR] Rng.SpecialCells(xlCellTypeConstants).Areas
   Dn(1).Font.Bold = True
   Dn(1).Font.Underline = True
[COLOR="Navy"]Next[/COLOR] Dn
[COLOR="Navy"]End[/COLOR] [COLOR="Navy"]Sub[/COLOR]
Regards Mick
 
Upvote 0
OMG!!! That's just great thanks so much Mick. I wonder if I could encroach further on your generosity of knowledge! I forgot I've also got some information in column C which should stay together with the text in column B. I'm not au fait with these macros (apart from pressing 'run') - is that a quick little alteration you could make for me please?
Really appreciate this, making this so quick for me!
Thank you.
 
Upvote 0
Try this:-
Code:
[COLOR="Navy"]Sub[/COLOR] MG28Aug15
[COLOR="Navy"]Dim[/COLOR] Rng [COLOR="Navy"]As[/COLOR] Range, Dn [COLOR="Navy"]As[/COLOR] Range, c [COLOR="Navy"]As[/COLOR] [COLOR="Navy"]Long,[/COLOR] Fd [COLOR="Navy"]As[/COLOR] Boolean
[COLOR="Navy"]Set[/COLOR] Rng = Range("A1", Range("B" & Rows.Count).End(xlUp))
ReDim Ray(1 To Rng.Count * 2, 1 To 2)
[COLOR="Navy"]For[/COLOR] [COLOR="Navy"]Each[/COLOR] Dn [COLOR="Navy"]In[/COLOR] Rng
    [COLOR="Navy"]If[/COLOR] Not IsEmpty(Dn.Value) [COLOR="Navy"]Then[/COLOR]
        c = c + 1
        [COLOR="Navy"]If[/COLOR] c > 1 And Dn.Column = 1 [COLOR="Navy"]Then[/COLOR] c = c + 1
            Ray(c, 1) = Dn.Value
        [COLOR="Navy"]If[/COLOR] Dn.Column = 2 [COLOR="Navy"]Then[/COLOR] Ray(c, 2) = Dn.Offset(, 1).Value
        
        [COLOR="Navy"]End[/COLOR] If
[COLOR="Navy"]Next[/COLOR] Dn
[COLOR="Navy"]Set[/COLOR] Rng = Sheets("Sheet2").Range("a1").Resize(c, 2)
Rng.Value = Ray
[COLOR="Navy"]Set[/COLOR] Rng = Rng.Resize(c, 1)

[COLOR="Navy"]For[/COLOR] [COLOR="Navy"]Each[/COLOR] Dn [COLOR="Navy"]In[/COLOR] Rng.SpecialCells(xlCellTypeConstants).Areas
   Dn(1).Font.Bold = True
   Dn(1).Font.Underline = True
[COLOR="Navy"]Next[/COLOR] Dn
[COLOR="Navy"]End[/COLOR] [COLOR="Navy"]Sub[/COLOR]
Regards Mick
 
Upvote 0

Forum statistics

Threads
1,215,065
Messages
6,122,944
Members
449,095
Latest member
nmaske

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top