Hi iceblocks
Put the following in the worksheet module you wish to run the code from.
Option Explicit
Private Sub Worksheet_Change(ByVal Target As Range)
Dim Myrange As Range
If Not Intersect(Target, Range("L10,L14,L29")) Is Nothing Then
For Each Myrange In Union([L10], [L14], [L29])...