Printing the file path name is Excel 2000

  • Thread starter Thread starter maacmaac
  • Start date Start date
M

maacmaac

I am using a script in VB by running a Macro to insert the full pathnam
of my file. The Macro works great. However, the problem I have i
that when I run the Macro, the font defaults to 10 point......I want
font of 6 point.

Any ideas on how to change the Macro so it will default to font 6 poin
everytime I run it?

Thanks

Sub PrintPathName()
ActiveSheet.PageSetup.RightFooter = ActiveWorkbook.FullName
End Su
 
With ActiveSheet.PageSetup
.RightFooter = "&6" & ActiveWorkbook.FullName
End With

Try this
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top