I am trying to write an expression to count the number of requests within a specific month from a year's worth of data.
I have tried:
=sum(iif((datepart("M",Fields!RequestDate.Value)) = (datepart("m",Now(-1))),1,0))
and many more different versions. Can someone point me in the right direction?