spss.AddProcedureFootnotes Function (Python)

spss.AddProcedureFootnotes(footnote). Adds a footnote to all tables generated by a procedure. The argument footnote is a string specifying the footnote.

  • The AddProcedureFootnotes function can only be used within a StartProcedure-EndProcedure block or within a custom procedure class based on the spss.BaseProcedure class.

Example

import spss
spss.StartProcedure("mycompany.com.demoProc")
spss.AddProcedureFootnotes("A footnote")
table = spss.BasePivotTable("Table Title",
                            "OMS table subtype")
table.SimplePivotTable(cells = [1,2,3,4])
spss.EndProcedure()