Click here to Skip to main content
15,886,362 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
any one tell me how to print 1 to 100 number series in rdlc

What I have tried:

any one tell me how to print 1 to 100 number series in rdlc
Posted
Updated 21-Dec-18 0:31am
Comments
CHill60 19-Dec-18 6:41am    
Do you mean Report Definition Language - Client-side? Or are you asking how to generate the numbers 1 to 100 in SQL to be used in an SSRS report?
ZurdoDev 19-Dec-18 7:46am    
Do it on the data side. In sql.

The simplest way is probably
SQL
select top 100 ROW_NUMBER() OVER (ORDER BY [object_id]) from sys.all_objects
 
Share this answer
 
Comments
Maciej Los 21-Dec-18 7:13am    
Good one!
 
Share this answer
 
Comments
CHill60 21-Dec-18 6:40am    
5'd
Maciej Los 21-Dec-18 7:12am    
Thank you, Caroline.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900