Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Is there a way to hide a button on a sheet unless the date in a cell is the
last day of the month? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
One way (assuming it's a button from your forms toolbar):
Put this in your ThisWorkbook code module: Private Sub Workbook_Open() Worksheets("Sheet1").Buttons("Button 1").Visible = _ Day(Date + 1) = 1 End Sub If you're unfamiliar with macros, see http://www.mvps.org/dmcritchie/excel/getstarted.htm In article , "Ed Davis" wrote: Is there a way to hide a button on a sheet unless the date in a cell is the last day of the month? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
hide or unhide rows with button | Excel Discussion (Misc queries) | |||
Want to show/hide cells depending on other cells results | Excel Discussion (Misc queries) | |||
How can I hide a paste button that appears? | Excel Discussion (Misc queries) | |||
hide a button | Excel Worksheet Functions | |||
Hide button from Template | Excel Discussion (Misc queries) |