On Apr 14, 11:25*pm, "Jim Cone" <james.cone...@comcast.netxxx> wrote:
> Mark,
> Each Excel sheet has its own class module.
> Right click the sheet tab and choose View Code.
> Included in that module are several events including one that
> occurs with every change in a cell.
> There are two dropdowns at the top of the module.
> Select "worksheet" in the left dropdown and "change" in the right dropdown.
> (not selection change)
> Have a go at it. *"Target" is a range object referencing the cell or cells changed.
> --
I am familiar with the "Worksheet Change Event" and the passed Target
Object. That is EXACTLY the event that I want to be able to tie my
class into, but I don't know how. Are you telling me to do something
like this in my Class...?
Public WithEvents WkSht as Worksheet
I think you are, and that does seem to give me the options I'm looking
for, I just thought that perhaps I could access the "Range" Class more
directly.
Thank for your time, I REALLY appreciate it.
Mark
|