I have the following expression in the report viewer report in visual studio:
=CDate(datetime.Today.AddDays(1)).Subtract(Fields!DateColumn.Value).Days
How can I get the Weekdays from the expression (Business days)?
I have the following expression in the report viewer report in visual studio:
=CDate(datetime.Today.AddDays(1)).Subtract(Fields!DateColumn.Value).Days
How can I get the Weekdays from the expression (Business days)?
Please disregard... I ended up cretaing a SP using the solution from get DATEDIFF excluding weekends using sql server and used it for the report.