Forum Discussion
How do I determine Current Quarter?
- 9 years ago
i think you can get using following formula:
CurrentQuarter =ROUNDUP(MONTH([TODAY()])/3, 0)
i think you can get using following formula:
CurrentQuarter =ROUNDUP(MONTH([TODAY()])/3, 0)
- psmith-nhs-inc9 years agoHelper III
One thing, Today() does not go into brackets.
CurrentQuarter =ROUNDUP(MONTH(TODAY())/3, 0)
That worked out quite well. Thank you!
Phil
- parry2k9 years agoSuper UserOops that was typo. Thanks thou. Glad we resolved it. :)
- Anonymous4 years agoNot applicable
If i use this, current Quarter number is showing in all the rows.
How to create column which has current Quarter as "Current Quarter", then rest is same like normal Quarter to be use for slicer (for default selection need to be current quarter)
- PhilSmith4 years agoHelper III
My Date table comes from a spreadsheet. This allows me to add my companies holidays into the mix for working day calculatoins and such.
I created a calculated column to identify if any particular date is in the current quarter. If it is, I get "CQ". If it is not, than I get Q1, Q2, Q3, or Q4 as expected.
CQisCurrentQuarter =
IF ( ROUNDUP ( MONTH ( TODAY () ) / 3, 0 ) = 'Date'[QuarterNumber], "CQ", 'Date'[Quarter] )Hope that helps.
Phil