Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
i am using the following worksheet change code in cell L5:
Private Sub Worksheet_Change(ByVal Target As Range) '================================================= ========== '- Brian Baulsom November 2008 '================================================= =========== '- Saves the value in this subroutine Static L5value As Variant '-------------------------------------------------------- '- check if the saved value is the same as it was If L5value < Range("L5").Value Then L5value = Range("L5").Value Application.ScreenUpdating = False Sheets("Items").Select Call DisplaySelected Sheets("Purchase Order (Inventory)").Select Application.ScreenUpdating = True End If End Sub - the cell L5 uses a vlookup to return value and this works in every instance. but on occassion, i need this code disabled, without actually deleting the code. the maco saves the file as a pdf without any issues, but when the cell L5 returns the value CLAIM, i need to save it as an excel file. as long as this code is in the workbook, i keep getting various errors, but if i remove this code it saves as an excel file fine. any ideas would be appreciated. thank you, jat |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Brian - Creating a option button | Excel Discussion (Misc queries) | |||
How do I set up worksheet tabs to change based on a workbook cell | Excel Worksheet Functions | |||
Change Text Color in one cell based upon entry in referenced cell | Excel Discussion (Misc queries) | |||
Is there a way to disable a macro based on the value of a cell? | Excel Discussion (Misc queries) | |||
enable/disable button based on cell value | Excel Discussion (Misc queries) |