Click here to Skip to main content
15,886,664 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
XML
<pre>How to addition 15 date in Another date in rdlc


won't to addittoion to 15 date in my Date.

       2015/03/17 + 15

   Anser : 2015/04/01


How to do it using rdlc expression.


Thank you  .
Posted

Have a look here: Common Expressions for Reports (Visual Studio Report Designer)[^] - second example uses formula to add 6 days to existing date.
 
Share this answer
 
Hi,

How about this:
VB
=(CDate(Fields!EndDate.Value).AddDays(15))
 
Share this answer
 

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