I want the user to input the last filled cell number through an InputBox dialog.
numRows = InputBox("Enter number of rows in the BOM: ", "Number of Rows")
The problem is when the dialog is on the screen the user cannot scroll down to see the last row. It will be hard to find the number of filled rows dynamically since some cells are filled some are not.
Thank you.
EDIT:
i am using Excel 2007
I suggest you should find out the last filled row programmatically without asking the user. Here
http://www.mrexcel.com/td0058.html
are some different solutions for this problem (dealing also with the case where some cells are filled and some are not).