I am having an issue trying to get my head wrapped around what I need.
I am building an SSRS report that I need to exclude weekends and holidays between 2 dates.
I use the following datediff function; but this does not take into account that I need to exclude weekends and holidays. Is there anyone online that has done this before?
= iif(Fields!QCP.Value = 1, DateDiff("d", Fields!RECEIVEDDATETIME.Value, fields!ENDTIMESTAMP.Value),"")
Thanks in advance for your help.