https://bugs.documentfoundation.org/show_bug.cgi?id=51453

--- Comment #19 from Robert Großkopf <rob...@familiegrosskopf.de> ---
Have created a workaround for this bug.
Set the group to
Force New Page → Before Section.
Name the Group like "NewPage".
After the report has been executed you have to start

SUB GroupNewPage
        DIM oTables AS OBJECT
        DIM oTable AS OBJECT
        DIM inT AS INTEGER
        oReport = ThisComponent
        oTables = oReport.getTextTables()
        FOR inT = 0 TO oTables.count() - 1
                oTable = oTables.getByIndex(inT)
                IF Left$(oTable.name, 7) = "NewPage" THEN
                        oTable.PageNumberOffset = 1
                ENDIF
        NEXT inT
END SUB

So we haven't to wait until this bug will be solved …

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to