我的报告中有一个文本框,用于显示图表中数据的数值。
我创建了一个由文本和数据值组成的表达式。
我使用了Round to show the first integer after the decimal
,但是当一个数字例如:"80.0"
时,它会显示为"80"
。我希望文本框显示小数点后的零值。
下面是我在文本框中使用的表达式:
="Desired text in text box: " & Round(Avg(Fields!MyData.Value, "MyDataSet"),1)
答案 0 :(得分:1)
尝试以下表达式,
="Desired text in text box: " & Format(CInt(Round(Avg(Fields!MyData.Value, "MyDataSet"),1)),"N2")
答案 1 :(得分:0)
在文本框的format属性中输入N2(2位小数是N2)