Click here to Skip to main content
15,899,126 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i have a date which comes from DB. now i want to subtract 2 days from existing date. how can i write expression in SSRS reports.
Posted

1 solution

In query builder you can modify your data query. Use the dateadd function of SQL Server for subtracting the 2 days.

example:
SQL
SELECT DATEADD (day , -2 , yourdate )


For more information see here: Building Your First SSRS Report[^]
 
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