i want to achieve the following I want to set the default date to the following business day. That would add one day for all weekdays unless it is Friday, if day is Friday than it add 3 days for Friday.
I am using the statement below but it is not working. It is adding 3 days for other days besides Friday in ssrs report.
= IIF(Weekday(Today()) <=3, DateAdd("d", 1, Today()), DateAdd("d", 3, Today()))
Example - 18/05/2018 today will be displayed 21/05/2018 And if date is 21/05/2018 then it will display 22/05/2018
Thanks for your answer.