Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Use OfficeArt to make a big ugly "Paid" design, tilt it 30°, and place it
right in the middle of the invoice. (I use it for reminders!) - Jon ------- Jon Peltier, Microsoft Excel MVP Tutorials and Custom Solutions http://PeltierTech.com _______ "Paul" wrote in message ... 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. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
And draw a nice command button and attach a macro to it so you can (kinda)
replicate the thump of the rubber stamp with a gentle click .... "Jon Peltier" wrote: Use OfficeArt to make a big ugly "Paid" design, tilt it 30°, and place it right in the middle of the invoice. (I use it for reminders!) - Jon ------- Jon Peltier, Microsoft Excel MVP Tutorials and Custom Solutions http://PeltierTech.com _______ "Paul" wrote in message ... 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. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank you Jon for your prompt help. Much appreciated. Regards-Paul.
"Jon Peltier" wrote: Use OfficeArt to make a big ugly "Paid" design, tilt it 30°, and place it right in the middle of the invoice. (I use it for reminders!) - Jon ------- Jon Peltier, Microsoft Excel MVP Tutorials and Custom Solutions http://PeltierTech.com _______ "Paul" wrote in message ... 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. |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Many Thanks. Would it be possible at all, if you can explain the command
button & macro to me in steps that I can follow to get your suggested result. "veryeavy" wrote: And draw a nice command button and attach a macro to it so you can (kinda) replicate the thump of the rubber stamp with a gentle click .... "Jon Peltier" wrote: Use OfficeArt to make a big ugly "Paid" design, tilt it 30°, and place it right in the middle of the invoice. (I use it for reminders!) - Jon ------- Jon Peltier, Microsoft Excel MVP Tutorials and Custom Solutions http://PeltierTech.com _______ "Paul" wrote in message ... 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. |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hey Jon,
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 .... "veryeavy" wrote: And draw a nice command button and attach a macro to it so you can (kinda) replicate the thump of the rubber stamp with a gentle click .... "Jon Peltier" wrote: Use OfficeArt to make a big ugly "Paid" design, tilt it 30°, and place it right in the middle of the invoice. (I use it for reminders!) - Jon ------- Jon Peltier, Microsoft Excel MVP Tutorials and Custom Solutions http://PeltierTech.com _______ "Paul" wrote in message ... 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. |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Here's a little macro to do it for you........you can assign it to a button,
or just use the Keyboard shortcut of Ctrl-P 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 "Paul" wrote: 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. |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
CLR has alredy posted a very nice macro for you.
See his posting. Gord Dibben MS Excel MVP On Tue, 21 Nov 2006 20:32:01 -0800, Paul wrote: Many Thanks. Would it be possible at all, if you can explain the command button & macro to me in steps that I can follow to get your suggested result. "veryeavy" wrote: And draw a nice command button and attach a macro to it so you can (kinda) replicate the thump of the rubber stamp with a gentle click .... "Jon Peltier" wrote: Use OfficeArt to make a big ugly "Paid" design, tilt it 30°, and place it right in the middle of the invoice. (I use it for reminders!) - Jon ------- Jon Peltier, Microsoft Excel MVP Tutorials and Custom Solutions http://PeltierTech.com _______ "Paul" wrote in message ... 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. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
lines in worksheet opened in Windows but created in Excel for Mac | Excel Discussion (Misc queries) | |||
Can an Excel Invoice link to an Excel Accounts Receivable Report? | Excel Discussion (Misc queries) | |||
How do I get custom views created in Excel 2K to show in Excel 200 | Excel Worksheet Functions | |||
can a workbook with macros created in excel 2003 work in excel 20. | Excel Discussion (Misc queries) | |||
How do I feed info from invoice I created to a Spreadsheet | Excel Discussion (Misc queries) |