How do I group date periods by quarter?
I used (if-then-else)
month =1,2,3 then Q1
month =4,5,6 then Q2
month =7,8,9 then Q3
month =10,11,12 then Q4
Is there another way?
How do I group date periods by quarter?
I used (if-then-else)
month =1,2,3 then Q1
month =4,5,6 then Q2
month =7,8,9 then Q3
month =10,11,12 then Q4
Is there another way?
A slightly modified if-then-else column is probably better:
If there is a possibility of empty date values, then perhaps this:
great, thanks
This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.