Find last empty cell excluding merged cells

oscarcrous

New Member
Joined
Feb 17, 2010
Messages
4
Hi

I have used this site for ages now and cannot begin to tell how much I have learned.
But I just cannot find a answer to a VBA problem I have.

I pull a report from a 3rd party in Excel format and make changes to the page to include extra information.

In one section (List Items), I want to find the last used cell in column A, but some of the cells in the section is merged.
The list is always in Column A and the merged cells is two or 3 cells in Column A.

This is my code to find the first and last row of the list, but this method will find the first empty cell even if it is merged.
I need a way to skip any merged cells and find the last empty cell at the bottom of the list, which is never merged, and set that cell as MyLastRow

Dim ListItem As Range
Dim ListItem1st As Range

With Sheets("Sheet1")
Set ListItem = .Cells.Find(what:="List Items")
Set ListItem1st = ListItem.Offset(1, 0)
End With


ListItem1st.Activate
MyFirstRow = ActiveCell.Row
MyLastRow = Range(("A" & MyFirstRow), "A" & Rows.Count).Cells.SpecialCells(xlCellTypeBlanks).Row


Range("A" & MyLastRow).Value = "Em-Power Totals"
Range("A" & MyLastRow).RowHeight = 12



Hope this make sense
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Does this do what you want?
Code:
Sub chk()
   With Sheets("Sheet1").Range("A" & Rows.Count).End(xlUp).Offset(1)
      .Value = "Em-Power Totals"
      .RowHeight = 12
   End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,216,178
Messages
6,129,326
Members
449,501
Latest member
Amriddin

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