Excel - Run Macro on Cell Change
Solved/Closed
ja6924
-
Apr 20, 2010 at 11:39 AM
aquarelle Posts 7119 Registration date Saturday April 7, 2007 Status Moderator Last seen October 18, 2022 - Apr 20, 2010 at 12:37 PM
aquarelle Posts 7119 Registration date Saturday April 7, 2007 Status Moderator Last seen October 18, 2022 - Apr 20, 2010 at 12:37 PM
Related:
- Excel - Run Macro on Cell Change
- How to change date format in excel - Guide
- Run macro when cell value changes - Guide
- How to change author in excel - Guide
- Excel conditional formatting if another cell contains specific text ✓ - Excel Forum
- Excel blinking cell without macro ✓ - Excel Forum
1 reply
aquarelle
Posts
7119
Registration date
Saturday April 7, 2007
Status
Moderator
Last seen
October 18, 2022
491
Apr 20, 2010 at 12:37 PM
Apr 20, 2010 at 12:37 PM
Hello,
Try to use this macro and adapt it if you need :
Best regards
Try to use this macro and adapt it if you need :
Private Sub Worksheet_Change(ByVal Target As Range) If [A3] = 1 Then Call Macro1 End If If [A3] = 2 Then Call Macro2 End If If [A3] = 3 Then Call Macro3 End If If [A3] = 4 Then Call Macro4 End If If [A3] = 5 Then Call Macro5 End If If [A3] = 6 Then Call Macro6 End If If [A3] = 7 Then Call Macro7 End If If [A3] = 8 Then Call Macro8 End If End Sub
Best regards