Forum Discussion
psmith-nhs-inc
Helper III
9 years agoHow do I determine Current Quarter?
CMisCurrentMonth = if('Date'[MonthNumber] = Month(Today()),"CM",'Date'[Month]) This gives me a slicer/filter where current month is always selectable by selecting "CM". CYisCurrentYear = if('Dat...
- 9 years ago
i think you can get using following formula:
CurrentQuarter =ROUNDUP(MONTH([TODAY()])/3, 0)
psmith-nhs-inc
Helper III
9 years agoOne thing, Today() does not go into brackets.
CurrentQuarter =ROUNDUP(MONTH(TODAY())/3, 0)
That worked out quite well. Thank you!
Phil
parry2k
Super User
9 years agoOops that was typo. Thanks thou. Glad we resolved it. :)