Excel 2003 Prof.
I have been looking at some old code. A lot of it has a hash marks (#) in front of conditional statements and constant decelerations such as:
Some of it comes out of a book and some of it I am seeing in excel. I can't find any documentation explaining what this # is doing. In some places it surrounds an entire functions. What is the # is doing?
-JTBorton
If it isn't broken, it doesn't have enough parts yet.
I have been looking at some old code. A lot of it has a hash marks (#) in front of conditional statements and constant decelerations such as:
Code:
#Const Tracing = True
#Const Debugging = True
#Const UseEventLog = False
#If UseEventLog Then
...stuff...
#End If
or
#If [Condition] Then
...stuff...
#Else
...stuff...
#End If
Some of it comes out of a book and some of it I am seeing in excel. I can't find any documentation explaining what this # is doing. In some places it surrounds an entire functions. What is the # is doing?
-JTBorton
If it isn't broken, it doesn't have enough parts yet.