VBA Merging Cells Help Needed

Tuffman

New Member
Joined
May 31, 2012
Messages
48
Office Version
  1. 2016
Platform
  1. Windows
I am trying to merge two cells that will be next to each other using VBA. I need to keep the row constant but the columns will change. I have tried using the two lines of code, but neither of them work. I would appreciate any insight into getting these to work. Thank you.

Worksheets("GT Quick Reference View").Range(Cells(1, j), Cells(1, j + 1)).Merge

Worksheets("GT Quick Reference View").Range("A" & j:"A" & j + 1).Merge
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
Single letters are not good variable names. They don't indicate anything about what they mean. What is j? In the first line of code you are treating it as a column. In the second one, you are attempting to treat it as a row, but your syntax is incorrect.

These two lines of code give correct syntax and they will merge cells, but without more information I can't know if this is what you want to.
VBA Code:
   Dim RowNum As Long
   Dim ColumnNum As Long

   ' Set RowNum and ColumnNum to...something

   Worksheets("GT Quick Reference View").Range(Cells(1, ColumnNum), Cells(1, ColumnNum + 1)).Merge

   Worksheets("GT Quick Reference View").Range("A" & RowNum & ":B" & RowNum).Merge

Oh, and don't do this. Merging cells is a very undesirable practice.
 
Upvote 0
Thank you for your quick reply. I apologize, I should have explained that the "j" is an integer that I will have increment. I initially set j = 1 and then have a j = j + 2. Between them I have my merge statement that I cannot get to work.

I tried your first suggestion and renamed j to ColumnNum and set it as long. However I could not get it to work. How would I rewrite your second recommendation if the rows are always Row 1 and the Columns are the ones that increment?

And I have to get the the cells merged. Sorry. Thanks again for your help.
 
Upvote 0
Like I said, in one case you were using j for a column and the other for a row, so I did not know your intent in setting j.

If the row is always 1 and the columns increment, ignore the second recommendation, use the first. My second recommendation was just to fix your syntax not knowing what you were actually trying to do.
 
Upvote 0
Jeff,
I really appreciate the point you made regarding being more descriptive with my variables and I have implemented that change. So thanks for that.
Below is my code in total, but I cannot get the merge part to execute. Do you see something wrong that I may be overlooking? Don't worry about the number for the 'SearchRange' variable. It's a 3863 row sheet of data, so I'm just running it on a few rows to see if it works.

Thank you,
Russ



Sub GTQuickReference()
Dim ColumnNum As Integer
Dim RowNum As Integer
Dim SearchString As String
Dim MaxRowNumber As Integer
Dim SearchRange As Integer

SearchString = "GT"
MaxRowNumber = Worksheets("Test Design").Cells.SpecialCells(xlCellTypeLastCell).Row
SearchRange = MaxRowNumber - 3818

ColumnNum = 1

For RowNum = 3 To SearchRange

If Worksheets("Test Design").Cells(RowNum, 2).Value = SearchString Then

Worksheets("Test Design").Select
Worksheets("Test Design").Cells(RowNum, 1).Copy

ColumnNum = ColumnNum + 2
Worksheets("GT Quick Reference View").Select
ActiveSheet.Paste Destination:=Worksheets("GT Quick Reference View").Cells(1, ColumnNum)
Worksheets("GT Quick Reference View").Range(Cells(1, ColumnNum), Cells(1, ColumnNum + 1)).Merge

End If

Next RowNum

End Sub
 
Upvote 0
You need to qualify properly.
Code:
Worksheets("GT Quick Reference View").Range(Worksheets("GT Quick Reference View").Cells(1, ColumnNum), Worksheets("GT Quick Reference View").Cells(1, ColumnNum + 1)).Merge

Or
at the top declare
Code:
Dim ws2 As Worksheet
Set ws2 = Worksheets("GT Quick Reference View")

more code here

ws2.Range(ws2.Cells(1, ColumnNum), ws2.Cells(1, ColumnNum + 1)).Merge

I did not go through all the code but the above stood out for me.
Try the changes and let us know either one way or the other.
 
Upvote 0
Solution
This is one of my many requests and on occasion people get upset. If so, I'm out
Going through and deciphering code that does not do what you think it should is time consuming and people have to guess what is meant.
And also, everybody does things different. Remember the saying about all the different roads leading to Rome.
If you can, explain in a concise manner what needs to happen.
A quick scan of your code shows that it should be considerable shorter and more to the point.

Don't think that the above is a negative comment. It is not. All of the people were at the same stage when they started.
 
Upvote 0
I forgot to ask.
Is the first time pasting to be done in Range("C1") and not in Range("A1")?
 
Upvote 0
You need to qualify properly.
This is an excellent point that I missed. Apologies for leading down the wrong road.

Another possibility:
VBA Code:
With Worksheets("GT Quick Reference View")
   .Range(.Cells(1, ColumnNum), .Cells(1, ColumnNum + 1)).Merge
End With
 
Upvote 0

Forum statistics

Threads
1,221,525
Messages
6,160,326
Members
451,637
Latest member
hvp2262

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