Arrays question

×

×לי

Hi!

I have 2 arrays. one array contains records from a table and the second
array contains only one record from the same table. The user may change one
or more values in the second array. My question is how can I test if the
second array was changed?

Thanks in advance

Eli
 
B

Bernd P

Hello Eli,

You can store your second array in a worksheet and check via the
Worksheet_Change event whether the Target parameter intersects with
your array cells.

Or you keep a copy of your second array in memory and whenever you
need to know whether its changed you apply an item-wise check.

Regards,
Bernd
 

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