Here is a simple MicroStrategy formula to derive first day of quarter based on current date:
MonthStartDate(AddMonths(CurrentDateTime(),(((Month(CurrentDateTime()) - 1) - ((Quarter(CurrentDateTime()) - 1) * 3)) * -1)))
I am sure there must be easier ways than this. Comment with your versions of the formula.
MonthStartDate(AddMonths(CurrentDateTime(),(((Month(CurrentDateTime()) - 1) - ((Quarter(CurrentDateTime()) - 1) * 3)) * -1)))
I am sure there must be easier ways than this. Comment with your versions of the formula.
Comments