Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
Please can you help, everytime I select save as on my excel spreadsheet a macro runs which deletes all the values in the cell. I need to keep the marco but I do not want it to run when I select save as: The macro should only run when a drop down list is changed which populates data in the spreadsheet. The macro is not in a module but resides in the workbook. How can I stop this macro running when I select save as? Private Sub Cash_Select_Change() myYear = Year(Date) LeapYear = "No" If myYear = "2012" Or myYear = "2016" Or myYear = "2020" Or myYear = "2024" Or myYear = "2028" Or myYear = "2032" Then LeapYear = "Yes" Else LeapYear = "No" End If 'Range("CURRENCY_1_FORECAST").ClearContents 'Range("CURRENCY_2_FORECAST").ClearContents 'Range("CURRENCY_3_FORECAST").ClearContents If Cash_Forecast_Select.Value = "January" Then Sheets("Cash Forecasting").Select Range("January").Copy Range("B17").Select ActiveSheet.Paste Range("B26").Select ActiveSheet.Paste Range("B35").Select ActiveSheet.Paste 'Range("B44").Select 'ActiveSheet.Paste 'Range("B53").Select 'ActiveSheet.Paste 'Range("B62").Select 'ActiveSheet.Paste Range("C19").Select End If End Sub Thanks for any advice. Brett |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How can I save the formulas when running a macro? Need ASAP!! | Excel Discussion (Misc queries) | |||
Save To Csv Running A Macro | Excel Discussion (Misc queries) | |||
How do I stop a Macro from running? | Excel Worksheet Functions | |||
How to CANCEL file SAVE PROMPT when MACRO is running? | Excel Discussion (Misc queries) | |||
How to stop getting the file save box when running a macro | Excel Discussion (Misc queries) |