Macros/Visual Basic for Applications (VBA)

A Name defined in Excel (Insert, Name, Define...), e.g. “Sales” provides us with a way of communicating with Excel from VBA. We could refer to an Excel range from VBA using Range("Sales") for example. This code will increase the values in a range named “Sales” by 10% and format the numbers correct to two decimal places. ................
................