How do you mark an excel sheet or workbook as being a draft? I am trying to acheive the effect you get when you use the watermark function in MS Word.
How do you mark an excel sheet or workbook as being a draft? I am trying to acheive the effect you get when you use the watermark function in MS Word.
i dont believe excel has a watermark as an option. you can insert a background picture if necessary, but its not actually a watermark
Hi,Originally Posted by HT1
the code to do this isHope this helps.![]()
Option Explicit Sub WaterMarkerHL() Dim Mud As Integer, Dum As Object Mud = -80 Application.ScreenUpdating = False Dim Page As Integer For Page = 1 To 14 ActiveSheet.Shapes.AddTextEffect(msoTextEffect1, _ "Waterymark", "Algerian", _ 40#, 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("L8").Select End Sub Sub WaterMarkerGone() Application.ScreenUpdating = False Dim Page As Integer For Page = 1 To 14 ActiveSheet.Shapes("Dum").Select Selection.Cut Next Page End Sub
---
Si fractum non sit, noli id reficere.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks