简体   繁体   中英

Calculated field in SSRS

I have tried to create a calculated field that will show the number of customer transactions processed within 15 minutes.

I have added the expression:

=count(fields!wait.Value<15)

However, when I run the query I'm getting the error message : 'expression used for the calculated field includes an aggregate RowNumber...'

Can you advise please on how to create a calculated field so I can capture the value I want?

I have tried = SUM(IIF(Fields!wait.Value < 15 , 1, 0)) to no avail.

With many thanks.

Calculated fields added to datasets can't have aggregate functions. The calculated field is essentially adding an extra column to your dataset. It sounds like you may want a variable? Used elsewhere in the report, your second expression would work, or the similar

=Count(IIf(Fields!wait.Value<15, 1, Nothing))

would work too.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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