add a footnote to a excel spreadsheet

mszcool

New Member
Joined
Apr 25, 2013
Messages
2
Is there a step by step example on how to add a footnote to a excel spreadsheet?
Thanks
MszCool:)
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Which Excel do you have?

With Excel 2007 - Page Setup --> Header and Footer --> Custom Footer --> Type what you want --> Okay --> When you print it will have the footer.
 
Upvote 0
Hi and welocme to MrExcel.

Do you mean that you want to add something to a "Footer" so that it is printed on every page that is printed out?

If so, try, alt F W V click Page Setup, Click Header/Footer, Click Custom Footer, add whatever in formation you want to the Footer, click Ok, Ok and close (X)

If you require a VBA solution, I'm sorry, but I cannot really help you with that, other than to say, you'll need something like this....

Sub PrintExample()

With ActiveSheet

''''This adds the date and time to the center of the sheet at the top

ActiveSheet.PageSetup.CenterHeader = Format(Now, "dddd dd mmmm yyyy hh:mm am/pm")

''''This adds your name and year to the bottom right of the sheet

ActiveSheet.PageSetup.RightFooter = Format("©Mszcool") & Format(Now, "yyyy")

'.PrintPreview
.PrintOut
End With
End Sub

Or if you wanted to produce the same document for different people/areas.....

Sub PrintNote()
Sheets("Invoice").Select
Dim x As Integer
For x = 1 To 4
Dim y As String
Select Case x
Case 1: y = "Accounts copy"
Case 2: y = "Warehouse copy"
Case 3: y = "Admin copy"
Case 4: y = "Admin copy"
End Select
'ActiveSheet.PageSetup.LeftFooter = y
'ActiveSheet.PageSetup.RightFooter = y
'ActiveSheet.PageSetup.LeftHeader = y
ActiveSheet.PageSetup.RightHeader = y
ActiveSheet.PrintOut
Next x

End Sub

I hope this helps.

Ak
 
Upvote 0

Forum statistics

Threads
1,226,266
Messages
6,189,935
Members
453,583
Latest member
Ok_category1816

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top