hsandeep
Well-known Member
- Joined
- Dec 6, 2008
- Messages
- 1,226
- Office Version
- 2010
- Platform
- Windows
- Mobile
I have a code whose 4 lines are:
I want to understand, If a(q)<=0 Then WHAT WILL HAPPEN?
Thanks in advance
Rich (BB code):
If a(q) > 0 Then
findhigh = Format(a(q), "0.00")
GoTo finish
End If
I want to understand, If a(q)<=0 Then WHAT WILL HAPPEN?
- Will GoTo finish line get ‘activated’?
- 2nd line will not be activated?
- i.e. IF the If condition…is not TRUE Then does it works as
Rich (BB code):
Else If GoTo finish
Thanks in advance