One guy had venison stew today and offered us all to try it. It smelled great, but as I had already had alot of food, I wasn't able to give it a try. Maybe tomorrow! (Can you believe it was venison?)
Also, one of the partners came down for lunch today (what a humble guy), and dropped multiple times how he is dating someone who weights about 105 lbs and is a size zero, his words "she's skin and bones." (he's 60 or so). Pretty cool to hear an old rich guy talk about girls!
Well, this little project im working on isnt going to do itself... back to it... (need to create a macro to insert a logo in the header of every worksheet, centered and scaled, should be fun!)
you should post the code for the macro when you finish it
ReplyDeletei, too, would be interested in viewing this source code
ReplyDeletefor those who were interested in code:
ReplyDeleteSub headerz()
'
' sick macro for inserting the image I want
'and scaling it to the pixels I want
'
Dim ws As Worksheet
For Each ws In Worksheets
ws.PageSetup.CenterHeaderPicture.Filename = _
"H:\FA\Long_Beach\Logo.jpg"
With ws.PageSetup.CenterHeaderPicture
.Height = 90
.Width = 90
End With
With ws.PageSetup
.CenterHeader = "&G"
End With
Next
End Sub
might want to indicate that this is company proprietary material
ReplyDeletegreat work robert. one question - why is the With...End With necessary for the last command? In other words, it is not necessary. Have a great day.
ReplyDeletethanks.
ReplyDelete