ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Run macro according to value of a cell (https://www.excelbanter.com/excel-worksheet-functions/200894-run-macro-according-value-cell.html)

Kashyap

Run macro according to value of a cell
 
How to make a macro run automatically according to a value of a cell?

Eq: once we enter value '5' in cell G8, then a particular macro should run 5
times

Héctor Miguel

Run macro according to value of a cell
 
hi, !

How to make a macro run automatically according to a value of a cell?
Eq: once we enter value '5' in cell G8, then a particular macro should run 5 times


copy/paste (or type) the following in "that" worlksheet code module
(right-click its tab/name and choose: "viwe code")

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address < "$G$8" Then Exit Sub Else Dim n As Byte
For n = 1 To Val(Range("g8"))
Macro1
Next
End Sub

hth,
hector.




All times are GMT +1. The time now is 07:37 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com