move to another cell within a subtotal report within a macro

G

Guest

Hi

I have created a subtotal grouping within the sheet. I have then condensed
the sheet, thus only showing the subtotal heading and result. This works fine
within a macro that was created for the purpose.

Now I wish to move to the next visable cell and delete the conents. This
works fine via the keyboard/mouse. I then down arrow to the next visibale
cell and clear the contents. Down once again and repeat. However I would like
it as a macro. When I look at the macro the absolute cell is in the range ().
select. This will not work as the sheet of data changes at the subtotal will
not always appear for the same location.

Is there a way of slecting the next visable cell in the subtotal sheet, and
what method is this?


Mnay thanks in advance for any help.

Regards Noel
 
D

Dave Peterson

You could just look to see if the row is hidden:

Do
ActiveCell.Offset(1, 0).Select
If ActiveCell.EntireRow.Hidden = False Then
Exit Do
End If
Loop
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top