Jemini Jimi
New Member
- Joined
- Jan 11, 2025
- Messages
- 21
- Office Version
- 365
- Platform
- Windows
When this code runs once, I need it to stop but it keeps looping because the trigger cell is in the macro.
I read about Application.EnableEvents but I cannot get it to work.
I am trying to copy and paste values in selected cells after the file is saved.
Here are the range of cells>>> D2:E2 , D3:D4, J29:L29
Macro runs
I read about Application.EnableEvents but I cannot get it to work.
I am trying to copy and paste values in selected cells after the file is saved.
Here are the range of cells>>> D2:E2 , D3:D4, J29:L29
VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Me.Range("D2:E2")) Is Nothing Then SaveAsFilenameInCell
End Sub
Macro runs
Code:
Sub SaveAsFilenameInCell()
Dim FileName As Variant
Dim ValCellA1 As String
Dim Path As String
Application.ScreenUpdating = False
ActiveSheet.Unprotect
MsgBox "Time to SAVE this file in the JOB FOLDER", vbInformation, "Save File"
ValCellA1 = ThisWorkbook.Sheets("Subcontract").Range("A1")
FileName = Application.GetSaveAsFilename(Path + ValCellA1 + ".xlsm", _
"Excel Workbook,*.xlsm", 1, "Confirm Folder")
If TypeName(FileName) = "Boolean" Then
MsgBox "No File was saved"
Else
'copy and paste job Data and date
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
ActiveSheet.Paste
Application.CutCopyMode = False
'this range is the trigger
Range("D2:E2").Select
Selection.Merge
With Selection
.HorizontalAlignment = xlLeft
.VerticalAlignment = xlBottom
.MergeCells = True
End With
Range("D3:D4").Select
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
ActiveSheet.Paste
Application.CutCopyMode = False
Range("J29:L29").Select
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
ActiveSheet.Paste
Application.CutCopyMode = False
Range("J29:L29").Select
Selection.Merge
With Selection
.HorizontalAlignment = xlLeft
.VerticalAlignment = xlBottom
.MergeCells = True
End With
ActiveWorkbook.SaveAs FileName
MsgBox "File was Saved", vbInformation, "File Saved"
ActiveSheet.Protect
Application.ScreenUpdating = True
End If
End Sub