(I use it for reminders!)
- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
http://PeltierTech.com
_______
"Paul" <Pa...@discussions.microsoft.com> wrote in message
news:26C7DE27-15CE-4EC4...@microsoft.com...
> I've created an Invoice in Excel & it's workign fine. Is there a way to
> insert a "Paid" stamp kind of comment on the invoice.
- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
http://PeltierTech.com
_______
"Jon Peltier" <jonxl...@SPAMpeltiertech.com> wrote in message news:...
You've kinda called my bluff. With a little bit of help from this group I
could probably get one of these working smoothly.
I know there will be someone out there who can explain this clearly and
concisely - I started drafting a response and realised I will probably miss
out a vital step and put you off horribly.
This will take you into the realm of recording (and possibly editing) macros
so it would be good how keen you are to start learning how to automate things
...
Sub PaidStamp()
'========================================
'Places "Paid" artwork on sheet
'Keyboard Shortcut: Ctrl+p
'========================================
ActiveSheet.Shapes.AddTextEffect(msoTextEffect1, "Paid", "Arial Black",
96#, _
msoFalse, msoFalse, 252.75, 132.75).Select
Selection.ShapeRange.IncrementRotation -30#
Selection.ShapeRange.IncrementLeft -45#
Selection.ShapeRange.IncrementTop 64.5
Selection.ShapeRange.Fill.Visible = msoFalse
Range("A1").Select
End Sub
hth
Vaya con Dios,
Chuck, CABGx3
See his posting.
Gord Dibben MS Excel MVP