在查询中设置字段格式以进行报告

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在查询中设置字段格式以进行报告相关的知识,希望对你有一定的参考价值。

报表的字段是否有办法考虑查询中字段的格式?

例如:

我在查询中有一个StudentPercent字段。该字段的值介于0到1之间,但由于它的格式为百分比,因此它们显示为0%到100%。当我运行报告时,它不考虑字段的格式,值介于0到1之间。为什么会这样?

编辑1:我正在使用Microsoft Access 2016.此外,数据是动态填充的,所以我不能手动设置字段的格式。

编辑2:

Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
'Exit Sub
'  Place values in text boxes and hide unused text boxes.

    Dim intX As Integer
    '  Verify that not at end of recordset.
    If Not rstReport.EOF Then
        '  If FormatCount is 1, place values from recordset into text boxes
        '  in detail section.
        If Me.FormatCount = 1 Then
            Me("Col" + Format(intColumnCount + 1)) = 0
            For intX = 1 To intColumnCount
                '  Convert Null values to 0.
                Me("Col" + Format(intX)) = Nz(rstReport(intX - 1))
                If intX < intColumnCount Then
                    Me("Col" + Format(intColumnCount + 1)) = _
                    Me("Col" + Format(intColumnCount + 1)) + Nz(rstReport(intX))
                End If
            Next intX

            '  Hide unused text boxes in detail section.
            'For intX = intColumnCount + 2 To conTotalColumns
                'Me("Col" + Format(intX)).Visible = False
            'Next intX
        For intX = 2 To intColumnCount + 1
            Me("Tot" + Format(intX)) = Nz(Me("Tot" + Format(intX))) + Nz(Me("Col" + Format(intX)))
        Next intX

            '  Move to next record in recordset.

            rstReport.MoveNext
        End If
    End If
End Sub

^是我的报告的详细部分的代码。我收到错误'13' - 在使用Format(FieldName,“Percent”)转换字段后运行报表时类型不匹配,并突出显示以下代码:

                Me("Col" + Format(intColumnCount + 1)) = _
                Me("Col" + Format(intColumnCount + 1)) + Nz(rstReport(intX))
答案

将报表中文本框的Format属性设置为:Percent

或者,展开源查询以使字段将格式化的值作为文本返回:

StudentPercentText: Format([StudentPercent],"Percent") 

然后在报表中使用此字段,而不是StudentPercent字段。但是,这是文本,因此您无法在报表中的计算中使用此类字段。

以上是关于在查询中设置字段格式以进行报告的主要内容,如果未能解决你的问题,请参考以下文章

如何在 iReport 中设置 Excel 单元格格式

html 允许用户选择表单的电子邮件地址。此代码允许您在表单中设置“选择”字段,以允许用户设置

html 允许用户选择表单的电子邮件地址。此代码允许您在表单中设置“选择”字段,以允许用户设置

html 允许用户选择表单的电子邮件地址。此代码允许您在表单中设置“选择”字段,以允许用户设置

如何在 graphQL 片段中定义可选字段以进行查询

在android活动中设置片段的形状和透明度