Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

move to another cell within a subtotal report within a macro

0 views
Skip to first unread message

NoelH

unread,
Aug 30, 2005, 11:35:36 PM8/30/05
to
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

Dave Peterson

unread,
Aug 31, 2005, 10:02:15 AM8/31/05
to
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

--

Dave Peterson

0 new messages