I have a worksheet where in I calculate the costprice of new projects.
On each row I calculate the price for each part. Some times I need 4000 parts so I have a lot of rows.
Above I calculate the totals for each column (in VBA). Each column is a diffrent type of work
Now my problem: when I change the price of a row I want to change the totals immeadiatley. When i should use the complete procedure in VBA starting on each change_event, my system would work to slow. That is why I would store the old row in a temporary object. After my change I would look for the diffrence between the old object and the new object and adjust the totals in this way.
now my question: to do this I need a sort of before change event to store the old object; I know it exists in VB but it doesn't seem to exist in VBA. How do I do this
On each row I calculate the price for each part. Some times I need 4000 parts so I have a lot of rows.
Above I calculate the totals for each column (in VBA). Each column is a diffrent type of work
Now my problem: when I change the price of a row I want to change the totals immeadiatley. When i should use the complete procedure in VBA starting on each change_event, my system would work to slow. That is why I would store the old row in a temporary object. After my change I would look for the diffrence between the old object and the new object and adjust the totals in this way.
now my question: to do this I need a sort of before change event to store the old object; I know it exists in VB but it doesn't seem to exist in VBA. How do I do this