Header Alignment

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am looking to see how to align my header flush right and left on a page.
Can anyone help me on this?
 
put this in the workbook before close event.
private sub macMakeBU
ActiveWorkbook.Save
ActiveWorkbook.SaveAs Filename:="H:\Book3.xls", _
FileFormat:=xlNormal, _
Password:="", WriteResPassword:="", _
ReadOnlyRecommended:=False, _
CreateBackup:=False
end sub
 
Explain further how this is done.

put this in the workbook before close event.
private sub macMakeBU
ActiveWorkbook.Save
ActiveWorkbook.SaveAs Filename:="H:\Book3.xls", _
FileFormat:=xlNormal, _
Password:="", WriteResPassword:="", _
ReadOnlyRecommended:=False, _
CreateBackup:=False
end sub
 
Back
Top