Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I would like to set the default value to be false, does anyone have any
suggestions on how to do it in Excel? Thanks in advance for any suggestions Eric Public endChange As Boolean |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
The default value for a Boolean is False when it is declared. No problem -
it's already done for you. Want proof? Put this code right below it and run it repeatedly using F5: Sub TestEndChange() MsgBox "endChange is " & endChange endChange = Not endChange End Sub First time you run it, you'll see it is False. After that, it toggles between True and False. "Eric" wrote: I would like to set the default value to be false, does anyone have any suggestions on how to do it in Excel? Thanks in advance for any suggestions Eric Public endChange As Boolean |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
endChange = False
"Eric" wrote in message ... I would like to set the default value to be false, does anyone have any suggestions on how to do it in Excel? Thanks in advance for any suggestions Eric Public endChange As Boolean |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Change default number to default text? | Excel Programming | |||
Default Windows Profile without default Office user info | Excel Discussion (Misc queries) | |||
Default ribbon to open by default when opening xls in browser | Excel Discussion (Misc queries) | |||
define name | Excel Programming | |||
How do I define "contains' as the default custom filter? | Excel Worksheet Functions |