Excel - Run Macro on Cell Change
Solved/Closed
Related:
- Excel - Run Macro on Cell Change
- Excel run macro on open - Guide
- Excel online macros - Guide
- Excel mod apk for pc - Download - Spreadsheets
- Excel cell color formula - Guide
- How to change date format in excel - Guide
1 response
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