Hw3zs
Hw3zs

Reputation: 7

SSRS title changing expression

Hello guys i need to create title expresion in report builder which:

will change name from "x" to "first 100x" when count of all rows in table will reach 100...

any ideas ?

Upvotes: 0

Views: 359

Answers (1)

tty0
tty0

Reputation: 56

try this:

=IIF(CountRows("MyDataSet")=100,"First 100x","x")

Upvotes: 1

Related Questions