Can i show sum of column on every Page in ReportLab











up vote
0
down vote

favorite












I am using ReportLab library with python-2.7. I am printing multiple page . Can anyone tell me that how to print sum of above table column of every page into bottom like below example.



page 1



C1 C2

10 10

20 10

30 20 Total



page 2



C1 C2

11 10

11 15

22 25 Total



page 3



C1 C2

07 05

07 15

14 20 Total



a.py



from reportlab.platypus import SimpleDocTemplate, Table, TableStyle, Paragraph, Frame, Spacer
from reportlab.lib import colors
from reportlab.lib.units import cm
from reportlab.lib.pagesizes import A3, A4, landscape, portrait
from reportlab.lib.styles import ParagraphStyle, getSampleStyleSheet
from reportlab.lib.enums import TA_LEFT, TA_RIGHT, TA_CENTER, TA_JUSTIFY
from reportlab.pdfgen import canvas
from random import randint

pdfReportPages = "test.pdf"
doc = SimpleDocTemplate(pdfReportPages, pagesize=A4)

# container for the "Flowable" objects
elements =
styles=getSampleStyleSheet()
styleN = styles["Normal"]

# Make heading for each column and start data list
column1Heading = "COLUMN ONE HEADING"
column2Heading = "COLUMN TWO HEADING"
# Assemble data for each column using simple loop to append it into data list
data = [[column1Heading,column2Heading]]
for i in range(1,100):
data.append([str(randint(1, 10)),str(randint(1, 10))])

tableThatSplitsOverPages = Table(data, [6 * cm, 6 * cm], repeatRows=1)
tableThatSplitsOverPages.hAlign = 'LEFT'
tblStyle = TableStyle([('TEXTCOLOR',(0,0),(-1,-1),colors.black),
('VALIGN',(0,0),(-1,-1),'TOP'),
('LINEBELOW',(0,0),(-1,-1),1,colors.black),
('BOX',(0,0),(-1,-1),1,colors.black),
('BOX',(0,0),(0,-1),1,colors.black)])
tblStyle.add('BACKGROUND',(0,0),(1,0),colors.lightblue)
tblStyle.add('BACKGROUND',(0,1),(-1,-1),colors.white)
tableThatSplitsOverPages.setStyle(tblStyle)
elements.append(tableThatSplitsOverPages)

doc.build(elements)









share|improve this question




























    up vote
    0
    down vote

    favorite












    I am using ReportLab library with python-2.7. I am printing multiple page . Can anyone tell me that how to print sum of above table column of every page into bottom like below example.



    page 1



    C1 C2

    10 10

    20 10

    30 20 Total



    page 2



    C1 C2

    11 10

    11 15

    22 25 Total



    page 3



    C1 C2

    07 05

    07 15

    14 20 Total



    a.py



    from reportlab.platypus import SimpleDocTemplate, Table, TableStyle, Paragraph, Frame, Spacer
    from reportlab.lib import colors
    from reportlab.lib.units import cm
    from reportlab.lib.pagesizes import A3, A4, landscape, portrait
    from reportlab.lib.styles import ParagraphStyle, getSampleStyleSheet
    from reportlab.lib.enums import TA_LEFT, TA_RIGHT, TA_CENTER, TA_JUSTIFY
    from reportlab.pdfgen import canvas
    from random import randint

    pdfReportPages = "test.pdf"
    doc = SimpleDocTemplate(pdfReportPages, pagesize=A4)

    # container for the "Flowable" objects
    elements =
    styles=getSampleStyleSheet()
    styleN = styles["Normal"]

    # Make heading for each column and start data list
    column1Heading = "COLUMN ONE HEADING"
    column2Heading = "COLUMN TWO HEADING"
    # Assemble data for each column using simple loop to append it into data list
    data = [[column1Heading,column2Heading]]
    for i in range(1,100):
    data.append([str(randint(1, 10)),str(randint(1, 10))])

    tableThatSplitsOverPages = Table(data, [6 * cm, 6 * cm], repeatRows=1)
    tableThatSplitsOverPages.hAlign = 'LEFT'
    tblStyle = TableStyle([('TEXTCOLOR',(0,0),(-1,-1),colors.black),
    ('VALIGN',(0,0),(-1,-1),'TOP'),
    ('LINEBELOW',(0,0),(-1,-1),1,colors.black),
    ('BOX',(0,0),(-1,-1),1,colors.black),
    ('BOX',(0,0),(0,-1),1,colors.black)])
    tblStyle.add('BACKGROUND',(0,0),(1,0),colors.lightblue)
    tblStyle.add('BACKGROUND',(0,1),(-1,-1),colors.white)
    tableThatSplitsOverPages.setStyle(tblStyle)
    elements.append(tableThatSplitsOverPages)

    doc.build(elements)









    share|improve this question


























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I am using ReportLab library with python-2.7. I am printing multiple page . Can anyone tell me that how to print sum of above table column of every page into bottom like below example.



      page 1



      C1 C2

      10 10

      20 10

      30 20 Total



      page 2



      C1 C2

      11 10

      11 15

      22 25 Total



      page 3



      C1 C2

      07 05

      07 15

      14 20 Total



      a.py



      from reportlab.platypus import SimpleDocTemplate, Table, TableStyle, Paragraph, Frame, Spacer
      from reportlab.lib import colors
      from reportlab.lib.units import cm
      from reportlab.lib.pagesizes import A3, A4, landscape, portrait
      from reportlab.lib.styles import ParagraphStyle, getSampleStyleSheet
      from reportlab.lib.enums import TA_LEFT, TA_RIGHT, TA_CENTER, TA_JUSTIFY
      from reportlab.pdfgen import canvas
      from random import randint

      pdfReportPages = "test.pdf"
      doc = SimpleDocTemplate(pdfReportPages, pagesize=A4)

      # container for the "Flowable" objects
      elements =
      styles=getSampleStyleSheet()
      styleN = styles["Normal"]

      # Make heading for each column and start data list
      column1Heading = "COLUMN ONE HEADING"
      column2Heading = "COLUMN TWO HEADING"
      # Assemble data for each column using simple loop to append it into data list
      data = [[column1Heading,column2Heading]]
      for i in range(1,100):
      data.append([str(randint(1, 10)),str(randint(1, 10))])

      tableThatSplitsOverPages = Table(data, [6 * cm, 6 * cm], repeatRows=1)
      tableThatSplitsOverPages.hAlign = 'LEFT'
      tblStyle = TableStyle([('TEXTCOLOR',(0,0),(-1,-1),colors.black),
      ('VALIGN',(0,0),(-1,-1),'TOP'),
      ('LINEBELOW',(0,0),(-1,-1),1,colors.black),
      ('BOX',(0,0),(-1,-1),1,colors.black),
      ('BOX',(0,0),(0,-1),1,colors.black)])
      tblStyle.add('BACKGROUND',(0,0),(1,0),colors.lightblue)
      tblStyle.add('BACKGROUND',(0,1),(-1,-1),colors.white)
      tableThatSplitsOverPages.setStyle(tblStyle)
      elements.append(tableThatSplitsOverPages)

      doc.build(elements)









      share|improve this question















      I am using ReportLab library with python-2.7. I am printing multiple page . Can anyone tell me that how to print sum of above table column of every page into bottom like below example.



      page 1



      C1 C2

      10 10

      20 10

      30 20 Total



      page 2



      C1 C2

      11 10

      11 15

      22 25 Total



      page 3



      C1 C2

      07 05

      07 15

      14 20 Total



      a.py



      from reportlab.platypus import SimpleDocTemplate, Table, TableStyle, Paragraph, Frame, Spacer
      from reportlab.lib import colors
      from reportlab.lib.units import cm
      from reportlab.lib.pagesizes import A3, A4, landscape, portrait
      from reportlab.lib.styles import ParagraphStyle, getSampleStyleSheet
      from reportlab.lib.enums import TA_LEFT, TA_RIGHT, TA_CENTER, TA_JUSTIFY
      from reportlab.pdfgen import canvas
      from random import randint

      pdfReportPages = "test.pdf"
      doc = SimpleDocTemplate(pdfReportPages, pagesize=A4)

      # container for the "Flowable" objects
      elements =
      styles=getSampleStyleSheet()
      styleN = styles["Normal"]

      # Make heading for each column and start data list
      column1Heading = "COLUMN ONE HEADING"
      column2Heading = "COLUMN TWO HEADING"
      # Assemble data for each column using simple loop to append it into data list
      data = [[column1Heading,column2Heading]]
      for i in range(1,100):
      data.append([str(randint(1, 10)),str(randint(1, 10))])

      tableThatSplitsOverPages = Table(data, [6 * cm, 6 * cm], repeatRows=1)
      tableThatSplitsOverPages.hAlign = 'LEFT'
      tblStyle = TableStyle([('TEXTCOLOR',(0,0),(-1,-1),colors.black),
      ('VALIGN',(0,0),(-1,-1),'TOP'),
      ('LINEBELOW',(0,0),(-1,-1),1,colors.black),
      ('BOX',(0,0),(-1,-1),1,colors.black),
      ('BOX',(0,0),(0,-1),1,colors.black)])
      tblStyle.add('BACKGROUND',(0,0),(1,0),colors.lightblue)
      tblStyle.add('BACKGROUND',(0,1),(-1,-1),colors.white)
      tableThatSplitsOverPages.setStyle(tblStyle)
      elements.append(tableThatSplitsOverPages)

      doc.build(elements)






      python python-2.7 reportlab






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 22 at 7:22









      eyllanesc

      70.8k93053




      70.8k93053










      asked Nov 22 at 7:14









      Martin

      53217




      53217





























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53425633%2fcan-i-show-sum-of-column-on-every-page-in-reportlab%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53425633%2fcan-i-show-sum-of-column-on-every-page-in-reportlab%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Contact image not getting when fetch all contact list from iPhone by CNContact

          count number of partitions of a set with n elements into k subsets

          A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks