Reputation: 7
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
Reputation: 56
try this:
=IIF(CountRows("MyDataSet")=100,"First 100x","x")
Upvotes: 1