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

--- Comment #22 from Robert Großkopf <[email protected]> ---
If you are using Macros to open the report the following should work:

SUB TabSplit
DIM oReport AS OBJECT
DIM oTables AS OBJECT
DIM oTable AS OBJECT
DIM inT AS INTEGER
DIM inI AS INTEGER      
oReport =
ThisDatabaseDocument.ReportDocuments.getByName("Movimientos_por_fecha_y_cuenta").open
oTables = oReport.getTextTables()
FOR inT = 0 TO oTables.count() - 1
        oTable = oTables.getByIndex(inT)
        IF Left$(oTable.name, 6) = "Detail" THEN
                oTable.Split = True
        ENDIF
        NEXT inT
END SUB

The report will be opened by a button, for example in a Base form. Tested this
with the generated file of the report.

Hope someone will fix this in the ReportBuilder.

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to