Problem on identifying last row using excel VBA

astral007

New Member
Joined
Oct 12, 2017
Messages
4
Hi, Im just newbie in excel VBA :)

ActiveSheet.Range("A6:K" & Sheets("Sheet2").Cells(Rows.Count, 1).End(xlUp).Row).SpecialCells(xlCellTypeVisible).Select

using the code above its only selected 1,528 rows where it supposedly selected 2,092 rows which is my last row?:confused:

is there a problem with code?
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Welcome to the board.

You're using SpecialCells(xlCellTypeVisible) - have you applied a filter so are only selecting the cells visible on the sheet after filter is applied (which doesn't include the last row), i.e. the last row is filtered out?

What is the name of the activesheet? You may want to post your entire code.
 
Last edited:
Upvote 0
Welcome to the board.

You're using SpecialCells(xlCellTypeVisible) - have you applied a filter so are only selecting the cells visible on the sheet after filter is applied (which doesn't include the last row), i.e. the last row is filtered out?

What is the name of the activesheet? You may want to post your entire code.

problem solved! :D id just deleted blank column in my worksheet ...
thank you :D
 
Upvote 0

Forum statistics

Threads
1,215,824
Messages
6,127,108
Members
449,359
Latest member
michael2

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