Another Drinking Holiday

Sub HappyStPatsDay()
 
    Dim OTheMorning As Shape
    Dim TwoYou As Double
 
    OTheMorning.Top = TwoYou
   
End Sub

Update: John wants one that runs without error and I’m happy to oblige.

Sub HappyStPatsDay()
 
    Dim OTheMorning As Shape
    Dim TwoYou As Double
       
    On Error Resume Next
   
    OTheMorning.Top = TwoYou
   
End Sub
Posted in Uncategorized

6 thoughts on “Another Drinking Holiday

  1. Doesn’t do anything here – is it just a joke in code or is it meant to actually work with a shape in a spreadsheet?


Posting code? Use <pre> tags for VBA and <code> tags for inline.

Leave a Reply

Your email address will not be published.