I have an Excel spreadsheet which I use to calculate the cost of a product we sell, (happens to be car insurance). This product is calculated based on various pieces of inf
You can. In the VBA of the sheet, create a function like so:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
and in it's body
Cheers -