Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
rsl rsl is offline
external usenet poster
 
Posts: 1
Default how do i watermark an excel spreadsheet?

office 2000, would like to have watermark behind text in spreadsheet, to
appear centre page, almost full size of page.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 79
Default how do i watermark an excel spreadsheet?

I believe watermarks are put on through your printer
properties / effects
--
grizz


"rsl" wrote:

office 2000, would like to have watermark behind text in spreadsheet, to
appear centre page, almost full size of page.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 698
Default how do i watermark an excel spreadsheet?

Hi rsl,

Run this in the sheet module and see what has to be tweeked to suit your
needs. Can change the number of sheets as needed as well as the watermark
wording and font size. Change the "For Page = 1 To 1
" to do multiple sheets. ie- = 1 to 5.

Sub WaterMarkerHP() 'Horizontal Portrait
On Error Resume Next
WaterMarkerGone
Dim Mud As Integer, Dum As Object
Mud = -185
Application.ScreenUpdating = False
ActiveSheet.PageSetup.PrintArea = "$A$1:$P$41"
With ActiveSheet.PageSetup
.Orientation = xlPortrait
End With
Dim Page As Integer
For Page = 1 To 1
ActiveSheet.Shapes.AddTextEffect(msoTextEffect1, _
"Budgetary Access Pricing", "Arial", _
24, msoFalse, msoFalse, 269, 105#).Select
Selection.Name = "Dum"
With Selection
.ShapeRange.Fill.Visible = msoTrue
.ShapeRange.Fill.Solid
.ShapeRange.Fill.ForeColor.SchemeColor = 22
.ShapeRange.Fill.Transparency = 0.5
.ShapeRange.Line.Visible = msoFalse
.ShapeRange.IncrementRotation -26.22
.ShapeRange.IncrementLeft Mud
.ShapeRange.IncrementTop 100
End With
Mud = Mud + 624.5
Next Page
Range("A1").Value = ""
Range("A1").Select
Application.ScreenUpdating = True
End Sub

Sub WaterMarkerGone()
Application.ScreenUpdating = False
On Error Resume Next
Dim Page As Integer
For Page = 1 To 1
ActiveSheet.Shapes("Dum").Select
Selection.Cut
Next Page
Application.CutCopyMode = False
Range("A1").Value = ""
Range("A1").Select
Application.ScreenUpdating = True
End Sub

You can also use word art (which the above code is a modified recorded macro
of) to do the same thing on a single sheet, set the transparancy, remove
borders, size the font and tilt to your desire.

HTH
Regards,
Howard

"rsl" wrote in message
...
office 2000, would like to have watermark behind text in spreadsheet, to
appear centre page, almost full size of page.



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I get the Watermark Page #s to appear on a spreadsheet? megan Excel Discussion (Misc queries) 2 April 28th 10 06:22 PM
How can I get rid of a watermark on an Excel spreadsheet? trainer07 Excel Discussion (Misc queries) 2 April 23rd 07 09:06 AM
how do I add a watermark to an excel spreadsheet Nick Hanson Excel Discussion (Misc queries) 1 April 18th 06 12:44 PM
How do I add/remove a text watermark in an Excel spreadsheet? learner Excel Discussion (Misc queries) 1 July 12th 05 08:09 PM
how do I insert a watermark onto an Excel spreadsheet? Anna Excel Discussion (Misc queries) 1 April 5th 05 03:25 PM


All times are GMT +1. The time now is 01:23 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"