Hi
I have the following macro that runs everytime I put data in but it runs everytime I put data in and want it to only run like every 10 seconds and go back to where I put the last data in if that can be done.
Can that be done?
I have the following macro that runs everytime I put data in but it runs everytime I put data in and want it to only run like every 10 seconds and go back to where I put the last data in if that can be done.
VBA Code:
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
Cells.Select
With Selection.Font
.Name = "Daytona"
.Size = 11
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.TintAndShade = 0
.ThemeFont = xlThemeFontNone
End With
With Selection.Font
.Name = "Daytona"
.Size = 11
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.TintAndShade = 0
.ThemeFont = xlThemeFontNone
End With
Selection.Font.Bold = False
Selection.Font.Bold = True
Selection.Font.Bold = False
ActiveWorkbook.Save
End Sub
Can that be done?