LectorFiel
New Member
- Joined
- Apr 11, 2015
- Messages
- 15
Hello Everyone.
I am trying to underline a piece of text on the RIGHT footer side using a Macro. But I do not get the result I am looking for.
I know the character for underline, &U , but it does not works. I really appreciate any idea, or help me to detect what is my mistake.
What I am looking on the Right footer side is it:
Form Approved By/Date: Signature on file
Director of Quality
I want to uderline the text " Signature on file "
This is the macro I am using.
Sub AddFooter_CurrentSheetOnly()
With ActiveSheet.PageSetup
.LeftFooter = "Doc No. " & Worksheets("Input PKG").Range("B38") & vbLf _
& "Effective Date: " & Worksheets("Input PKG").Range("B39")
.RightFooter = "Form Approved By/Date: " & U & " Signature on file " & U & vbLf _
& " Director of Quality"
End With
End Sub
Thank you for your help.
I am trying to underline a piece of text on the RIGHT footer side using a Macro. But I do not get the result I am looking for.
I know the character for underline, &U , but it does not works. I really appreciate any idea, or help me to detect what is my mistake.
What I am looking on the Right footer side is it:
Form Approved By/Date: Signature on file
Director of Quality
I want to uderline the text " Signature on file "
This is the macro I am using.
Sub AddFooter_CurrentSheetOnly()
With ActiveSheet.PageSetup
.LeftFooter = "Doc No. " & Worksheets("Input PKG").Range("B38") & vbLf _
& "Effective Date: " & Worksheets("Input PKG").Range("B39")
.RightFooter = "Form Approved By/Date: " & U & " Signature on file " & U & vbLf _
& " Director of Quality"
End With
End Sub
Thank you for your help.