I'm basically try to write a piece of code that displays which overtime it is based on the quarter of the game. Not sure if logic is correct and positive syntax isn't correct.
If for example quarters was 5 then i would want the output to be:
(OT)
if quarters was 6 i would want the output to be:
(2OT)
etc...
Any help would be greatly appreciated...thanks
Code:
if cInt(quarters) > 4 then
ot = (""&cInt(quarters) - 5&" OT))"
else
ot = " "
end if
If for example quarters was 5 then i would want the output to be:
(OT)
if quarters was 6 i would want the output to be:
(2OT)
etc...
Any help would be greatly appreciated...thanks