如何创建基于宏的模板?

时间:2017-05-29 10:50:38

标签: excel-vba jasper-reports export-to-excel vba excel

导出到excel时是否可以在jrxml中添加宏?

我找不到任何文档,我唯一能找到的就是关于JasperSoft社区的问题,Excel macro and pivot tables

1 个答案:

答案 0 :(得分:2)

MS Excel宏可以在net.sf.jasperreports.export.xlsx.macro.template的帮助下,使用 MS Excel 类型)从外部文件添加报告的财产。

可以使用 xltm xlsm 类型的

实施例

让我们尝试添加简单的,为活动小区添加评论。 此将存储在 macro.xlsm 文件中。

的内容(示例*):

Sub add_comment()
    Dim cmt As Comment
    Dim str As String
    On Error Resume Next

    str = "Value: " + ActiveCell.Text
    Set cmt = ActiveCell.Comment
    If cmt Is Nothing Then
        ActiveCell.AddComment _
        Text:=str
        Set cmt = ActiveCell.Comment
    End If

    With cmt
        .Shape.AutoShapeType = msoShapeRoundedRectangle
        .Shape.TextFrame.Characters.Font.Name = "Tahoma"
        .Shape.TextFrame.Characters.Font.Size = 8
        .Shape.TextFrame.Characters.Font.ColorIndex = 2
        .Shape.Line.ForeColor.RGB = RGB(0, 0, 0)
        .Shape.Line.BackColor.RGB = RGB(255, 255, 255)
        .Shape.Fill.Visible = msoTrue
        .Shape.Fill.ForeColor.RGB = RGB(58, 82, 184)
        .Shape.Fill.OneColorGradient msoGradientDiagonalUp, 1, 0.23
    End With

    SendKeys "+{F2}"  'opens comment for editing
End Sub

jrxml 文件(报告的模板)将是:

<?xml version="1.0" encoding="UTF-8"?>
<jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="Macro sample" pageWidth="595" pageHeight="842" whenNoDataType="AllSectionsNoDetail" columnWidth="595" leftMargin="0" rightMargin="0" topMargin="0" bottomMargin="0">
    <property name="com.jaspersoft.studio.data.defaultdataadapter" value="One Empty Record"/>
    <property name="net.sf.jasperreports.export.xlsx.macro.template" value="macro.xlsm"/>
    <title>
        <band height="158">
            <staticText>
                <reportElement x="0" y="0" width="595" height="30"/>
                <textElement textAlignment="Center" verticalAlignment="Middle"/>
                <text><![CDATA[Long title]]></text>
            </staticText>
            <staticText>
                <reportElement x="0" y="30" width="595" height="128"/>
                <textElement textAlignment="Center" verticalAlignment="Middle">
                    <font fontName="SansSerif" size="18" isBold="true"/>
                </textElement>
                <text><![CDATA[Some text. This is a sample of using Macros]]></text>
            </staticText>
        </band>
    </title>
</jasperReport>

我们正在使用 net.sf.jasperreports.export.xlsx.macro.template 属性将我们的宏模板中的脚本包含到生成的报告中。

输出结果

我们可以在 Jaspersoft Studio 生成MS Excel格式的报告:

Exporting report at JSS

打开生成的 xls 文件后,我们可以运行嵌入式

Running Macro at Excel

作为运行 Macro 的结果,创建了新的彩色注释:

Created comment at Excel file

可在Advanced Excel Features发布更多信息。