Reputation: 181
I have a report working well where I extract the number of logins per user. Each login takes up one row on the report. I have date parameters and my DB goes back a year. However it seems the report will only show 40/50 rows despite a report expecting to deliver, say, 250 for the amount of times I logged in.
Is there some setting in reporting services that limits the number of rows delivered. Can't find it anywhere..
Thanks.
Upvotes: 1
Views: 1399
Reputation: 63870
The answer to your question: nope, as far as I know there's no real equivalent of SQL's TOP 50
statement in SSRS itself.
Some things that come to mind that may be causing your symptoms / can be investigated:
CountDistinct
call (on your dataset) in a textbox somehwere in the report, by itself.Upvotes: 3