I have a bunch of sheets in the same workbook and I want to be able to click a button and run a Macro in the sheet I clicked the Macro Button.
This is one of my codes:
Sub PromoCC()
PromoCC Macro
Sheets("Tipos de Proyecto").Select
Rows("3:69").Select
Range("Promoción_Nuevo_SKU_Compra_Item").Activate
Selection.Copy
I want to change this next line to be able to paste the copied data to the macro caller sheet
**Sheets("General").Select**
Range("A4").Select
Selection.End(xlDown).Select
Selection.Insert
Shift:=xlDown
Range("C5").Select
End Sub
I need a solution to the active sheet code, cause the "active sheet" after the data is copied is different to the macro caller sheet.