Mark Hogsett Posted November 23 Posted November 23 Newbie here. My goal is to create a calculated column, convert a date to YYQQ, where QQ is the quarter displayed as Q1, Q2, Q3, or Q4. The purpose is to aggregate by year/quarter and allows sorting by this column, group projects, etc. Thank you.
Solution Olivier Keugue Tadaa Posted November 24 Solution Posted November 24 Hi @Mark Hogsett If your date column is named "Date", then the below expression should work Right(String(Year([Date])),2) & Quarter([Date]) Also note that with a date column, you can use one of these built-in hierarchies on your charts.
Mark Hogsett Posted November 24 Author Posted November 24 Awesome, thank you. I like the visual of the YYQQ date format. Thanks also for the tip on using the build in hierarchies on charts. Very helpful.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now