kdavis6416
Technical User
I am trying to set a data parameter for the prior 3 months. E.g. If I ran it today on 8/16/18 I need the data range to be 5/1/2018 - 07/31/2018. This is what I have so far and it only brings back last months data.
_____________________________________________________________
if {?Relative Date} = "90 Days" then
(
RecStartDate := Minimum(LastFullMonth)-90;
RecEndDate := Maximum(LastFullMonth);
)
_____________________________________________________________
if {?Relative Date} = "90 Days" then
(
RecStartDate := Minimum(LastFullMonth)-90;
RecEndDate := Maximum(LastFullMonth);
)