Link to home
Start Free TrialLog in
Avatar of ISBTECH
ISBTECHFlag for United States of America

asked on

Mid Month Date range in Crystal

Hi all,

How do I do a selection formula that looks for the "ActualClosingDate" to be between the 16th or the prior month to the 15th of the current month?
Avatar of UnifiedIS
UnifiedIS

This will give you the ActualClosingDate from the 16th of last month through the 15th of this month:

{ActualClosingDate} >= DATE(YEAR(DATEADD("m", -1, TODAY)), MONTH(DATEADD("m", -1, TODAY)), 16)
    AND {ActualClosingDate} <= DATE(YEAR(TODAY), MONTH(TODAY), 15)
ASKER CERTIFIED SOLUTION
Avatar of Shiv
Shiv
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of ISBTECH

ASKER

Sorry for the delay thanks that worked perfectly!