Complete VBA beginner here - I'm trying to update a cell, which I've just entered a value for, based on another cell and its changing value.
So, I enter 100 into A1.
Then, based on the option of typing 3 words in cell C5, I want to multiple A1 by a certain amount.
If I enter 'Normal' into C5, it'll multiple A1 by 1. If I enter 'Low' into C5, it'll multiple A1 by 0.5. If I enter 'High' into C5, it'll multiple A1 by 2.
Any help or direction would be great :)
You need a worksheet event handler that triggers when cell C5 value changes
place this code in worksheet code pane (just right click on the tab and select "View Code")