Reputation: 1
Alright so I looked through for other solutions but I didn't get anything close enough with my limited knowledge to make it work so I hoping some geniuses here can help.
Basically I am using excel to autoupdate some data based on the value of another cell. A simplified version of my table looks like the below:
ID Step Count
526985 - Step 1 8
123569 + Step 3 3
589745 - Not in AMP 1
589465 + Step 2 5
What I need:
I think that's about it. I thought of using formulas which I could do but the issue is where I need to be able to overwrite the value with another, it will delete the formula. I'm open to anything that makes this work though. Thank you in advance!
Upvotes: 0
Views: 712
Reputation: 331
After you have a Change event you could have some logic to check: - if user is adding a new value in the correct column, you would load the previous data into a variant to perform the logic that you have given to populate the addition cells - if not, let the user update the values.
Upvotes: 1