I have one value (Fields!NET_BALANCE.Value) and I have 6 different columns where I want to apply a different date expression to this value.
Example:
-Sum of Starting Balance
=DateAdd("d", -1, DateSerial(Year(@StartDate), Month((@StartDate), 1))
I believe this date expression would retrieve the last day of the previous month based on the @StartDate parameter. But how do I apply this date calc to the value?