Assistance with an expression in SSRS 2008 -



Assistance with an expression in SSRS 2008 -

i have 1 column in table shows total number of transactions. can toggled show how long transaction took finish - eg 10 10 minutes, etc.

i have added column give total of transactions time transaction listed 0 (zero).

i have tried things like =count(fields!transactiontime.value < 1) returns total of transactions, not <0.

any suggestions simple yet infuriating problem appreciated - thanks.

try;

=sum(iif(fields!transactiontime.value = 0, 1, 0))

basically look iif evaluate each transactiontime and, if it's 0, homecoming 1. sum aggregates results of iifs, adding them give answer.

ssrs-2008-r2

Comments

Popular posts from this blog

javascript - THREE.js reposition vertices for RingGeometry -

javascript - I need to update the text of a paragraph by inline edit -

assembly - What is the addressing mode for ld, add, and rjmp instructions? -