简体   繁体   English

SSRS折线图未显示2月份的数据-潜在的未知排除

[英]SSRS Line Chart not pulling through Feb data - potential unknown exclusion

I'm a little confused with this one. 我对此有些困惑。 I have a dataset that I have connected to and checked and it holds Feb data however my line chart is only showing to January. 我有一个已连接并检查过的数据集,其中包含2月份的数据,但是我的折线图仅显示到1月份。

I have some custom formatting which I'm not sure is the problem. 我有一些自定义格式,我不确定是问题所在。 Listed below is the format's attached to the chart: 下面列出的是图表所附的格式:

Chart 图表

Category Groups: =Microsoft.VisualBasic.Conversion.Val(Microsoft.VisualBasic.Strings.Mid(Fields!year_month.Value, 6, 2)) & "/" & Microsoft.VisualBasic.Strings.Mid(Fields!year_month.Value, 3, 2) 类别组: = Microsoft.VisualBasic.Conversion.Val(Microsoft.VisualBasic.Strings.Mid(Fields!year_month.Value,6,2))&“ /”&Microsoft.VisualBasic.Strings.Mid(Fields!year_month.Value, 3,2)

Chart areas Catergory Axes : All auto options 图表区域 Catergory轴 :所有自动选项

Value Axes : Label Format: =Microsoft.VisualBasic.Interaction.IIF(System.Math.CEILING(Max(System.Math.Abs(Fields!avg_sentence_sentiment.Value))) = 1, "0.0;-0.0;0", "0.0;-0.0;0") 值轴 :标签格式:= Microsoft.VisualBasic.Interaction.IIF(System.Math.CEILING(Max(System.Math.Abs​​(Fields!avg_sentence_sentiment.Value))))= 1,“ 0.0; -0.0; 0”,“ 0.0; -0.0; 0" )

Max: =System.Math.CEILING(Max(System.Math.Abs(Fields!avg_sentence_sentiment.Value))) 最大值: = System.Math.CEILING(Max(System.Math.Abs​​(Fields!avg_sentence_sentiment.Value))))

Min: =- System.Math.CEILING(Max(System.Math.Abs(Fields!avg_sentence_sentiment.Value))) 最小值: =-System.Math.CEILING(Max(System.Math.Abs​​(Fields!avg_sentence_sentiment.Value))))

I'm sure I've created an exclusion somehow but I can't see and this has stumped me. 我确定我已经以某种方式创建了排除对象,但是我看不到,这让我很困惑。

Any help would be greatly appreciated. 任何帮助将不胜感激。

Kind regards 亲切的问候

I would just comment but I don't have the rep. 我只想发表评论,但没有代表。 :( :(

What is the expression for the Value of your chart? 图表价值的表达是什么?

Is it possible that there may be null values for the current month? 当前月份是否可能有空值? You might need to account for them in your expression. 您可能需要在表达式中说明它们。

=Sum(IIF(ISNOTHING(Fields!COUNT.Value), 0, Fields!COUNT.Value)) = Sum(IIF(ISNOTHING(字段!COUNT.Value),0,字段!COUNT.Value))

Does February show up on your chart axis or does the month not even appear? 2月会显示在您的图表轴上吗,还是什至没有显示月份?

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM